mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2025-10-29 18:00:15 +00:00
* Suffix names for custom exceptions with "Error" * Introduce exceptions for when the coressponding encoder isn't found
6 lines
174 B
Python
6 lines
174 B
Python
class LyricsNotFoundError(Exception):
|
|
__module__ = Exception.__module__
|
|
|
|
def __init__(self, message=None):
|
|
super(LyricsNotFoundError, self).__init__(message)
|