| 55 | export { AxiosRequestConfig }; |
| 56 | |
| 57 | export class HttpError extends Error { |
| 58 | status: number = 0; |
| 59 | details: string | undefined; |
| 60 | constructor(status: number, message: string, details?: string) { |
nothing calls this directly
no outgoing calls
no test coverage detected