Files
LangBot/libs/dify_service_api/v1/errors.py
2024-12-14 17:51:11 +08:00

7 lines
172 B
Python

class DifyAPIError(Exception):
"""Dify API 请求失败"""
def __init__(self, message: str):
self.message = message
super().__init__(self.message)