Files
pytchat-fork/yvi/exceptions.py
2020-08-21 23:16:12 +09:00

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
'''