mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-04-20 20:59:53 +08: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
|