mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
020957cd76
Signed-off-by: phernandez <paul@basicmachines.co> Co-authored-by: phernandez <paul@basicmachines.co> Co-authored-by: Claude <noreply@anthropic.com>
23 lines
390 B
Python
23 lines
390 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
|
|
|
|
|
|
class DirectoryOperationError(Exception):
|
|
"""Raised when directory operations fail"""
|
|
|
|
pass
|