Files
spotify-downloader/spotdl/lyrics/exceptions.py
2020-03-27 04:33:00 +05:30

6 lines
149 B
Python

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