mirror of
https://github.com/fastapi-practices/fastapi-best-architecture.git
synced 2026-09-21 21:15:13 +00:00
11 lines
181 B
Python
11 lines
181 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
class PluginConfigError(Exception):
|
|
"""插件信息错误"""
|
|
|
|
|
|
class PluginInjectError(Exception):
|
|
"""插件注入错误"""
|