Difficult-Rocket/Difficult_Rocket/exception/logger.py

15 lines
369 B
Python
Raw Normal View History

2022-06-29 13:45:25 +08:00
# -------------------------------
# Difficult Rocket
# Copyright © 2021-2022 by shenjackyuanjie 3695888@qq.com
# All rights reserved
# -------------------------------
from Difficult_Rocket.exception.threading import LockTimeOutError
__all__ = ["LogFileLockTimeOutError"]
class LogFileLockTimeOutError(LockTimeOutError):
"""日志文件写入锁超时"""