Files
basicmachines-co-basic-memory/src/basic_memory/services/exceptions.py
T
phernandez 90ca41fead fix tests
2024-12-24 20:29:21 -06:00

16 lines
287 B
Python

class FileOperationError(Exception):
"""Raised when file operations fail"""
pass
class EntityNotFoundError(Exception):
"""Raised when an entity cannot be found"""
pass
class EntityCreationError(Exception):
"""Raised when an entity cannot be created"""
pass