Files
oops-framework/node_modules/ky/distribution/errors/HTTPError.js
董刚 60658fb11e .
2022-03-22 14:36:30 +08:00

15 lines
644 B
JavaScript

// eslint-lint-disable-next-line @typescript-eslint/naming-convention
export class HTTPError extends Error {
constructor(response, request, options) {
const code = (response.status || response.status === 0) ? response.status : '';
const title = response.statusText || '';
const status = `${code} ${title}`.trim();
const reason = status ? `status code ${status}` : 'an unknown error';
super(`Request failed with ${reason}`);
this.name = 'HTTPError';
this.response = response;
this.request = request;
this.options = options;
}
}
//# sourceMappingURL=HTTPError.js.map