PaiGram/utils/error.py
洛水居室 233e7ab58d
♻️ PaiGram V4
Co-authored-by: luoshuijs <luoshuijs@outlook.com>
Co-authored-by: Karako <karakohear@gmail.com>
Co-authored-by: xtaodada <xtao@xtaolink.cn>
2023-03-14 09:27:22 +08:00

20 lines
522 B
Python

"""此模块包含BOT Utils的错误的基类"""
class NotFoundError(Exception):
entity_name: str
entity_value_name: str = "value"
def __init__(self, entity_value):
super().__init__(f"{self.entity_name} not found, {self.entity_value_name}: {entity_value}")
class RegionNotFoundError(NotFoundError):
entity_name: str = "RegionEnum"
entity_value_name: str = "region"
class UrlResourcesNotFoundError(NotFoundError):
entity_name: str = "url resources"
entity_value_name: str = "url"