diff options
Diffstat (limited to 'errors.py')
-rw-r--r-- | errors.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/errors.py b/errors.py new file mode 100644 index 0000000..9348dcb --- /dev/null +++ b/errors.py @@ -0,0 +1,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 |