invidious/src/invidious/exceptions.cr

21 lines
444 B
Crystal
Raw Normal View History

2022-03-27 00:20:00 +00:00
# Exception used to hold the bogus UCID during a channel search.
class ChannelSearchException < InfoException
getter channel : String
def initialize(@channel)
end
end
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 < Exception
2022-02-02 23:02:24 +00:00
getter element : String
def initialize(@element)
end
def message
return "Missing JSON element \"#{@element}\""
end
2022-02-02 23:02:24 +00:00
end