invidious-mod/src/invidious/exceptions.cr

36 行
914 B
Crystal
Raw 通常表示 履歴

2022-07-20 04:05:49 +09:00
# InfoExceptions are for displaying information to the user.
#
# An InfoException might or might not indicate that something went wrong.
# Historically Invidious didn't differentiate between these two options, so to
# maintain previous functionality InfoExceptions do not print backtraces.
class InfoException < Exception
end
2022-03-27 09:20:00 +09: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-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 < Exception
2022-02-03 08:02:24 +09:00
getter element : String
def initialize(@element)
end
def message
return "Missing JSON element \"#{@element}\""
end
2022-02-03 08:02:24 +09:00
end
2022-07-07 04:59:05 +09:00
# Exception threw when an element is not found.
class NotFoundException < InfoException
end
class VideoNotAvailableException < Exception
end