mirror of
https://github.com/fastapi-practices/fastapi_best_architecture.git
synced 2026-03-13 09:31:31 +08:00
11 lines
200 B
Python
11 lines
200 B
Python
class PluginConfigError(Exception):
|
|
"""插件信息错误"""
|
|
|
|
|
|
class PluginInjectError(Exception):
|
|
"""插件注入错误"""
|
|
|
|
|
|
class PluginInstallError(Exception):
|
|
"""插件安装错误"""
|