mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
16 lines
287 B
Python
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
|