invidious/src/invidious/exceptions.cr

9 行
202 B
Crystal
Raw 通常表示 履歴

2022-02-03 08:02:24 +09:00
# Exception used to hold the name of the missing item
# Should be used in all parsing functions
class BrokenTubeException < InfoException
getter element : String
def initialize(@element)
end
end