2023-05-15 08:51:32 +08:00
|
|
|
from services.errors.base import BaseServiceError
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class LastConversationNotExistsError(BaseServiceError):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ConversationNotExistsError(BaseServiceError):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ConversationCompletedError(Exception):
|
|
|
|
|
pass
|
2025-04-25 11:52:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class ConversationVariableNotExistsError(BaseServiceError):
|
|
|
|
|
pass
|