Files
spotify-downloader/spotdl/lyrics/exceptions.py
Ritiek Malhotra 29005f24ed Refactor exceptions
* Suffix names for custom exceptions with "Error"
* Introduce exceptions for when the coressponding encoder isn't found
2020-03-17 03:09:56 +05:30

6 lines
174 B
Python

class LyricsNotFoundError(Exception):
__module__ = Exception.__module__
def __init__(self, message=None):
super(LyricsNotFoundError, self).__init__(message)