mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-07-14 21:50:07 +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
|