swingmusic/server/app/exceptions.py
geoffrey45 09c588c856 add featured artists to playlist page
+ fetch album bio on raising bottom container
2022-07-08 16:39:16 +03:00

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