Add files

This commit is contained in:
taizan-hokuto
2020-04-15 23:40:41 +09:00
parent dfa7250415
commit 99423ddcd0
6 changed files with 208 additions and 0 deletions

9
exceptions.py Normal file
View File

@@ -0,0 +1,9 @@
class InvalidVideoIdException(Exception):
'''
Thrown when the video_id is not exist (VideoInfo).
'''
pass
class UnknownConnectionError(Exception):
pass