mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
27 lines
342 B
Python
27 lines
342 B
Python
class StreamsError(Exception):
|
|
pass
|
|
|
|
|
|
class StreamNotFound(StreamsError):
|
|
pass
|
|
|
|
|
|
class APIError(StreamsError):
|
|
pass
|
|
|
|
|
|
class InvalidTwitchCredentials(StreamsError):
|
|
pass
|
|
|
|
|
|
class InvalidYoutubeCredentials(StreamsError):
|
|
pass
|
|
|
|
|
|
class YoutubeQuotaExceeded(StreamsError):
|
|
pass
|
|
|
|
|
|
class OfflineStream(StreamsError):
|
|
pass
|