UNPKG

kubo-rpc-client

Version:
21 lines 548 B
export class TimeoutError extends Error { constructor(message = 'Request timed out') { super(message); this.name = 'TimeoutError'; } } export class AbortError extends Error { constructor(message = 'The operation was aborted.') { super(message); this.name = 'AbortError'; } } export class HTTPError extends Error { response; constructor(response) { super(response.statusText); this.name = 'HTTPError'; this.response = response; } } //# sourceMappingURL=error.js.map