mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
18 lines
247 B
Python
18 lines
247 B
Python
from zhenxun.utils.exception import HookPriorityException
|
|
|
|
|
|
class DbUrlIsNode(HookPriorityException):
|
|
"""
|
|
数据库链接地址为空
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class DbConnectError(Exception):
|
|
"""
|
|
数据库连接错误
|
|
"""
|
|
|
|
pass
|