Storage write errors.
| 293 | |
| 294 | @dataclass(frozen=True) |
| 295 | class StorageWriteError(ApiError): |
| 296 | """Storage write errors.""" |
| 297 | |
| 298 | storage_path: Optional[str] = None |
| 299 | |
| 300 | def code(self) -> int: |
| 301 | return 6002 |
| 302 | |
| 303 | |
| 304 | @dataclass(frozen=True) |
no outgoing calls
no test coverage detected