mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
13be84e4d4
Some checks are pending
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/amd64, build-api-amd64) (push) Waiting to run
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/arm64, build-api-arm64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/amd64, build-web-amd64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/arm64, build-web-arm64) (push) Waiting to run
Build and Push API & Web / create-manifest (api, DIFY_API_IMAGE_NAME, merge-api-images) (push) Blocked by required conditions
Build and Push API & Web / create-manifest (web, DIFY_WEB_IMAGE_NAME, merge-web-images) (push) Blocked by required conditions
32 lines
835 B
Python
32 lines
835 B
Python
from libs.exception import BaseHTTPException
|
|
|
|
|
|
class ApiKeyAuthFailedError(BaseHTTPException):
|
|
error_code = "auth_failed"
|
|
description = "{message}"
|
|
code = 500
|
|
|
|
|
|
class InvalidEmailError(BaseHTTPException):
|
|
error_code = "invalid_email"
|
|
description = "The email address is not valid."
|
|
code = 400
|
|
|
|
|
|
class PasswordMismatchError(BaseHTTPException):
|
|
error_code = "password_mismatch"
|
|
description = "The passwords do not match."
|
|
code = 400
|
|
|
|
|
|
class InvalidTokenError(BaseHTTPException):
|
|
error_code = "invalid_or_expired_token"
|
|
description = "The token is invalid or has expired."
|
|
code = 400
|
|
|
|
|
|
class PasswordResetRateLimitExceededError(BaseHTTPException):
|
|
error_code = "password_reset_rate_limit_exceeded"
|
|
description = "Password reset rate limit exceeded. Try again later."
|
|
code = 429
|