15 lines
276 B
Python
15 lines
276 B
Python
class InvalidVideoIdException(Exception):
|
|
'''
|
|
Thrown when the video_id is not exist (VideoInfo).
|
|
'''
|
|
pass
|
|
|
|
|
|
class UnknownConnectionError(Exception):
|
|
pass
|
|
|
|
|
|
class VideoInfoParseException(Exception):
|
|
'''
|
|
thrown when failed to parse video info
|
|
''' |