Source code for satorbis_kit.storage.exceptions
"""Storage-related exceptions shared across the package."""
[docs]
class StorageError(Exception):
"""Raised when cloud storage operations fail."""
def __init__(self, message: str):
super().__init__(message)