mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-16 12:02:16 +00:00
8 lines
265 B
Python
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__}'")
|