初始版本

This commit is contained in:
2022-04-15 14:33:01 +08:00
parent 09b2956573
commit e72eeb1f0e
6 changed files with 124 additions and 7 deletions

View File

@ -1,6 +1,10 @@
class NoDanmakuException(Exception):
class DanmakuException(Exception):
...
class DanmakuFormatErrorException(Exception):
class NoDanmakuException(DanmakuException):
...
class DanmakuFormatErrorException(DanmakuException):
...