Matches the backend's `{"error":{"message","type"}}` envelope.
| 9 | |
| 10 | /** Matches the backend's `{"error":{"message","type"}}` envelope. */ |
| 11 | interface ErrorBody { |
| 12 | error?: { message?: string; type?: string }; |
| 13 | } |
| 14 | |
| 15 | export class ApiError extends Error { |
| 16 | constructor( |
nothing calls this directly
no outgoing calls
no test coverage detected