mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +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
|