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