(message: string)
| 17 | |
| 18 | export class RequestError extends Error { |
| 19 | constructor(message: string) { |
| 20 | super(message); |
| 21 | if (typeof Object.setPrototypeOf === "function") { |
| 22 | Object.setPrototypeOf(this, RequestError.prototype); |
| 23 | } |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | export class RequestNotFoundError extends RequestError { |
nothing calls this directly
no outgoing calls
no test coverage detected