13 lines
346 B
Python
13 lines
346 B
Python
# -------------------------------
|
|
# Difficult Rocket
|
|
# Copyright © 2021-2022 by shenjackyuanjie 3695888@qq.com
|
|
# All rights reserved
|
|
# -------------------------------
|
|
from exception import BaseRuntimeError
|
|
|
|
__all__ = ["LockTimeOutError"]
|
|
|
|
|
|
class LockTimeOutError(BaseRuntimeError):
|
|
"""没有特殊指定的 ”某个“ 锁超时了"""
|