mirror of
https://github.com/RockChinQ/QChatGPT.git
synced 2024-11-16 03:32:33 +08:00
6 lines
176 B
Python
6 lines
176 B
Python
class RequesterError(Exception):
|
|
"""Base class for all Requester errors."""
|
|
|
|
def __init__(self, message: str):
|
|
super().__init__("模型请求失败: "+message)
|