mirror of
https://github.com/langgenius/dify.git
synced 2026-02-12 04:01:29 -05:00
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
|