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