mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-07 11:45:35 +00:00
15 lines
240 B
Python
15 lines
240 B
Python
class TrackExistsInPlaylist(Exception):
|
|
"""
|
|
Exception raised when a track is already in a playlist.
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class PlaylistExists(Exception):
|
|
"""
|
|
Exception raised when a playlist already exists.
|
|
"""
|
|
|
|
pass
|