blob: 9348dcb0311ec978861b21998ce3883ffa69cce8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# Used to indicate if something went wrong while trying to organize the music
# file
class UnableToCreateAlbumDirectoryError(Exception):
pass
# Used to indicate if the album cover was not found on the disk when the album
# artwork was meant to be inserted
class UnableToFindThumbnailFileError(Exception):
pass
|