mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
09c588c856
+ fetch album bio on raising bottom container
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
|