Fix empty error page on BrokenTubeException

pull/2874/head
Samantaz Fox 3 years ago
parent 492d1144e0
commit ec55b905cb
No known key found for this signature in database
GPG Key ID: F42821059186176E

@ -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

Loading…
Cancel
Save