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