Files
dify/api/controllers/console/auth/error.py
T
ba5f8afaa8 Feat/firecrawl data source (#5232)
Co-authored-by: Nicolas <[email protected]>
Co-authored-by: chenhe <[email protected]>
Co-authored-by: takatost <[email protected]>
2024-06-15 02:46:02 +08:00

8 lines
171 B
Python

from libs.exception import BaseHTTPException
class ApiKeyAuthFailedError(BaseHTTPException):
error_code = 'auth_failed'
description = "{message}"
code = 500