mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-07-13 21:20:06 +00:00
15 lines
250 B
Python
15 lines
250 B
Python
class TrackExistsInPlaylistError(Exception):
|
|
"""
|
|
Exception raised when a track is already in a playlist.
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class PlaylistExistsError(Exception):
|
|
"""
|
|
Exception raised when a playlist already exists.
|
|
"""
|
|
|
|
pass
|