(public response: Response)
| 1 | export class HTTPResponseError extends Error { |
| 2 | constructor(public response: Response) { |
| 3 | super(`HTTP Error Response: ${response.status} ${response.statusText}`) |
| 4 | this.response = response |
| 5 | } |
| 6 | } |
nothing calls this directly
no outgoing calls
no test coverage detected