frontend/.pnpm-store/v3/files/80/32930bc669b9ec7261f7a2b4b6bdbef04949a098e5e6f785c53bb903e014843945511e694bed65618527f8e51d9bd6cd56eb73e16b9a86c5e337e9f8d25a62

14 lines
387 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ApiError = void 0;
class ApiError extends Error {
constructor(response, message) {
super(message);
this.url = response.url;
this.status = response.status;
this.statusText = response.statusText;
this.body = response.body;
}
}
exports.ApiError = ApiError;