PaiGram/core/error.py
2022-10-10 19:07:28 +08:00

8 lines
265 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__}'")