(self, message: str = "Invalid storage operation")
| 2 | """Exception raised for errors in the storage operations.""" |
| 3 | |
| 4 | def __init__(self, message: str = "Invalid storage operation"): |
| 5 | self.message = message |
| 6 | super().__init__(self.message) |
| 7 | |
| 8 | |
| 9 | class InvalidStorageUsageError(Exception): |