mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-25 07:38:15 +08:00
18 lines
307 B
Python
18 lines
307 B
Python
from services.errors.base import BaseServiceError
|
|
|
|
|
|
class LastConversationNotExistsError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class ConversationNotExistsError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class ConversationCompletedError(Exception):
|
|
pass
|
|
|
|
|
|
class ConversationVariableNotExistsError(BaseServiceError):
|
|
pass
|