(msg)
| 1 | class ImpitError extends Error { constructor(msg) { super(msg); this.name = this.constructor.name; } } |
| 2 | class HTTPError extends ImpitError {} |
| 3 | class RequestError extends ImpitError {} |
| 4 | class TransportError extends RequestError {} |
nothing calls this directly
no outgoing calls
no test coverage detected