Files
dify/api/core/memory/errors.py
2025-08-20 17:45:53 +08:00

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)