87 lines
2.0 KiB
Python
87 lines
2.0 KiB
Python
class PomiceException(Exception):
|
|
"""Base of all Pomice exceptions."""
|
|
|
|
|
|
class NodeException(Exception):
|
|
"""Base exception for nodes."""
|
|
|
|
|
|
class NodeCreationError(NodeException):
|
|
"""There was a problem while creating the node."""
|
|
|
|
|
|
class NodeConnectionFailure(NodeException):
|
|
"""There was a problem while connecting to the node."""
|
|
|
|
|
|
class NodeConnectionClosed(NodeException):
|
|
"""The node's connection is closed."""
|
|
pass
|
|
|
|
|
|
class NodeNotAvailable(PomiceException):
|
|
"""The node is currently unavailable."""
|
|
pass
|
|
|
|
|
|
class NoNodesAvailable(PomiceException):
|
|
"""There are no nodes currently available."""
|
|
pass
|
|
|
|
|
|
class TrackInvalidPosition(PomiceException):
|
|
"""An invalid position was chosen for a track."""
|
|
pass
|
|
|
|
|
|
class TrackLoadError(PomiceException):
|
|
"""There was an error while loading a track."""
|
|
pass
|
|
|
|
|
|
class FilterInvalidArgument(PomiceException):
|
|
"""An invalid argument was passed to a filter."""
|
|
pass
|
|
|
|
class FilterTagInvalid(PomiceException):
|
|
"""An invalid tag was passed or Pomice was unable to find a filter tag"""
|
|
pass
|
|
|
|
class FilterTagAlreadyInUse(PomiceException):
|
|
"""A filter with a tag is already in use by another filter"""
|
|
pass
|
|
|
|
|
|
class SpotifyAlbumLoadFailed(PomiceException):
|
|
"""The pomice Spotify client was unable to load an album."""
|
|
pass
|
|
|
|
|
|
class SpotifyTrackLoadFailed(PomiceException):
|
|
"""The pomice Spotify client was unable to load a track."""
|
|
pass
|
|
|
|
|
|
class SpotifyPlaylistLoadFailed(PomiceException):
|
|
"""The pomice Spotify client was unable to load a playlist."""
|
|
pass
|
|
|
|
|
|
class InvalidSpotifyClientAuthorization(PomiceException):
|
|
"""No Spotify client authorization was provided for track searching."""
|
|
pass
|
|
|
|
class QueueException(Exception):
|
|
"""Base Pomice queue exception."""
|
|
pass
|
|
|
|
|
|
class QueueFull(QueueException):
|
|
"""Exception raised when attempting to add to a full Queue."""
|
|
pass
|
|
|
|
|
|
class QueueEmpty(QueueException):
|
|
"""Exception raised when attempting to retrieve from an empty Queue."""
|
|
pass
|