mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-11 03:46:52 +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
|