mirror of
https://github.com/langgenius/dify.git
synced 2026-06-11 02:20:22 +08:00
8ab3fda5a8
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
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
|