Difficult-Rocket/Difficult_Rocket/exception/__init__.py
2023-01-20 14:08:12 +08:00

31 lines
569 B
Python

# -------------------------------
# Difficult Rocket
# Copyright © 2020-2023 by shenjackyuanjie 3695888@qq.com
# All rights reserved
# -------------------------------
"""
writen by shenjackyuanjie
mail: 3695888@qq.com
github: @shenjackyuanjie
gitee: @shenjackyuanjie
"""
class BaseError(Exception):
"""基本 exp"""
def __bool__(self) -> bool:
return False
class BaseRuntimeError(RuntimeError):
"""基本 runtime exp"""
def __bool__(self) -> bool:
return False
class TestError(BaseRuntimeError):
"""在 test 啦"""