invidious/src/invidious/exceptions.cr

9 lines
202 B
Crystal
Raw Normal View History

2022-02-02 23:02:24 +00: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