Key not found errors.
| 197 | |
| 198 | @dataclass(frozen=True) |
| 199 | class KeyNotFoundError(ApiError): |
| 200 | """Key not found errors.""" |
| 201 | |
| 202 | key: Optional[str] = None |
| 203 | |
| 204 | def code(self) -> int: |
| 205 | return 4000 |
| 206 | |
| 207 | |
| 208 | @dataclass(frozen=True) |
no outgoing calls
no test coverage detected