Source code for pylav.exceptions.track

from __future__ import annotations

from pylav.exceptions.base import PyLavException


[docs] class TrackException(PyLavException): """Base exception for Track errors"""
[docs] class InvalidTrackException(TrackException): """Raised when an invalid track was passed"""
[docs] class TrackNotFoundException(TrackException): """Raised when a track is not found"""