mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2025-10-29 09:50:16 +00:00
6 lines
149 B
Python
6 lines
149 B
Python
class LyricsNotFoundError(Exception):
|
|
__module__ = Exception.__module__
|
|
|
|
def __init__(self, message=None):
|
|
super().__init__(message)
|