Fix empty error page on BrokenTubeException

pull/2874/head
Samantaz Fox 2022-02-09 01:36:17 +01:00
rodzic 492d1144e0
commit ec55b905cb
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: F42821059186176E
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -1,8 +1,12 @@
# Exception used to hold the name of the missing item
# Should be used in all parsing functions
class BrokenTubeException < InfoException
class BrokenTubeException < Exception
getter element : String
def initialize(@element)
end
def message
return "Missing JSON element \"#{@element}\""
end
end