@bugbytes/hapi-mirror
Version:
Hedera Mirror Node Client
15 lines • 463 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MirrorError = void 0;
class MirrorError extends Error {
status;
innerError;
constructor(message, status, innerError = undefined) {
super(message);
Object.setPrototypeOf(this, MirrorError.prototype);
this.status = status;
this.innerError = innerError;
}
}
exports.MirrorError = MirrorError;
//# sourceMappingURL=mirror-error.js.map