Plex-Bot-Music/PlexBot/exceptions.py

11 lines
223 B
Python
Raw Normal View History

class MediaNotFoundError(Exception):
2020-08-13 10:52:11 +02:00
"""Raised when a PlexAPI media resource cannot be found."""
pass
class VoiceChannelError(Exception):
2020-08-13 10:52:11 +02:00
"""Raised when user is not connected to a voice channel."""
2020-08-13 09:58:12 +02:00
pass