Difficult-Rocket/Difficult_Rocket/exception/threading.py

13 lines
363 B
Python
Raw Normal View History

2022-06-27 16:51:14 +08:00
# -------------------------------
# Difficult Rocket
2023-01-20 14:08:12 +08:00
# Copyright © 2020-2023 by shenjackyuanjie 3695888@qq.com
2022-06-27 16:51:14 +08:00
# All rights reserved
# -------------------------------
from Difficult_Rocket.exception import BaseRuntimeError
2022-06-27 16:51:14 +08:00
2022-06-29 13:45:25 +08:00
__all__ = ["LockTimeOutError"]
2022-06-27 16:51:14 +08:00
2022-06-29 13:45:25 +08:00
class LockTimeOutError(BaseRuntimeError):
"""没有特殊指定的 ”某个“ 锁超时了"""