Files
spotify-downloader/spotdl/command_line/exceptions.py
Ritiek Malhotra 42dd650ed8 CLI optimizations
2020-04-17 14:32:57 +05:30

7 lines
150 B
Python

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