mirror of
https://github.com/langgenius/dify.git
synced 2025-07-08 17:53:21 +00:00

Co-authored-by: Nicolas <nicolascamara29@gmail.com> Co-authored-by: chenhe <guchenhe@gmail.com> Co-authored-by: takatost <takatost@gmail.com>
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
|