19 lines
364 B
Python
19 lines
364 B
Python
|
# -------------------------------
|
||
|
# Difficult Rocket
|
||
|
# Copyright © 2021-2022 by shenjackyuanjie
|
||
|
# All rights reserved
|
||
|
# -------------------------------
|
||
|
|
||
|
"""
|
||
|
writen by shenjackyuanjie
|
||
|
mail: 3695888@qq.com
|
||
|
github: @shenjackyuanjie
|
||
|
gitee: @shenjackyuanjie
|
||
|
"""
|
||
|
|
||
|
|
||
|
class Error(Exception):
|
||
|
"""基础 Exception"""
|
||
|
def __bool__(self):
|
||
|
return False
|