mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-16 20:10:36 +00:00
8f424bf0d4
♻️ 重构插件系统 ⚙️ 重写插件 🎨 改进代码结构 📝 完善文档 Co-authored-by: zhxy-CN <admin@owo.cab> Co-authored-by: 洛水居室 <luoshuijs@outlook.com> Co-authored-by: xtaodada <xtao@xtaolink.cn> Co-authored-by: Li Chuangbo <im@chuangbo.li>
9 lines
266 B
Python
9 lines
266 B
Python
"""此模块包含核心模块的错误的基类"""
|
|
from typing import Union
|
|
|
|
|
|
class ServiceNotFoundError(Exception):
|
|
|
|
def __init__(self, name: Union[str, type]):
|
|
super().__init__(f"No service named '{name if isinstance(name, str) else name.__name__}'")
|