mirror of
https://github.com/langgenius/dify.git
synced 2026-06-10 01:50:00 +08:00
a303560b98
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
8 lines
187 B
Python
8 lines
187 B
Python
from libs.exception import BaseHTTPException
|
|
|
|
|
|
class EndUserNotFoundError(BaseHTTPException):
|
|
error_code = "end_user_not_found"
|
|
description = "End user not found."
|
|
code = 404
|