Files
spotify-downloader/spotdl/command_line/exceptions.py
2020-05-04 14:50:05 +05:30

14 lines
311 B
Python

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