mirror of
https://github.com/langgenius/dify.git
synced 2025-11-08 15:31:02 +00: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
|