mirror of
https://github.com/langgenius/dify.git
synced 2025-08-13 11:47:04 +00:00
22 lines
381 B
Python
22 lines
381 B
Python
from services.errors.base import BaseServiceError
|
|
|
|
|
|
class LastConversationNotExistsError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class ConversationNotExistsError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class ConversationCompletedError(Exception):
|
|
pass
|
|
|
|
|
|
class ConversationVariableNotExistsError(BaseServiceError):
|
|
pass
|
|
|
|
|
|
class ConversationVariableTypeMismatchError(BaseServiceError):
|
|
pass
|