feat(storage): add local storage framework

This commit is contained in:
Schubert Ferenc 2026-07-03 18:11:58 +02:00
parent 228da8f814
commit 964b545bc5
24 changed files with 890 additions and 98 deletions

View file

@ -0,0 +1,14 @@
class StorageError(Exception):
"""Base exception for storage operations."""
class StorageConfigurationError(StorageError):
pass
class StorageValidationError(StorageError):
pass
class StorageFileNotFoundError(StorageError):
pass