mirror of
https://github.com/langgenius/dify.git
synced 2025-12-22 15:27:32 +00:00
7 lines
288 B
Python
7 lines
288 B
Python
class MemorySyncTimeoutError(Exception):
|
|
def __init__(self, app_id: str, conversation_id: str):
|
|
self.app_id = app_id
|
|
self.conversation_id = conversation_id
|
|
self.message = "Memory synchronization timeout after 50 seconds"
|
|
super().__init__(self.message)
|