mirror of
https://github.com/langgenius/dify.git
synced 2025-07-04 23:57:12 +00:00
8 lines
171 B
Python
8 lines
171 B
Python
![]() |
from libs.exception import BaseHTTPException
|
||
|
|
||
|
|
||
|
class ApiKeyAuthFailedError(BaseHTTPException):
|
||
|
error_code = 'auth_failed'
|
||
|
description = "{message}"
|
||
|
code = 500
|