(self, message: str = "Invalid usage of the storage")
| 10 | """Exception raised for errors in the usage of the storage.""" |
| 11 | |
| 12 | def __init__(self, message: str = "Invalid usage of the storage"): |
| 13 | self.message = message |
| 14 | super().__init__(self.message) |
| 15 | |
| 16 | |
| 17 | class LLMServiceNoResponseError(Exception): |