Fix empty error page on BrokenTubeException

このコミットが含まれているのは:
Samantaz Fox 2022-02-09 01:36:17 +01:00
コミット ec55b905cb
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: F42821059186176E
1個のファイルの変更5行の追加1行の削除

ファイルの表示

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