frontend/.pnpm-store/v3/files/4b/ce1b256fd4f86a9a271293d3ad525c8273fe88205726d5a5a4d7f54d012856f52fbd52ade98ffd59fcecba76c08077a4aa200728963ec0968730899e14f092

14 lines
466 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var TimeoutErrorImpl = (function () {
function TimeoutErrorImpl() {
Error.call(this);
this.message = 'Timeout has occurred';
this.name = 'TimeoutError';
return this;
}
TimeoutErrorImpl.prototype = Object.create(Error.prototype);
return TimeoutErrorImpl;
})();
exports.TimeoutError = TimeoutErrorImpl;
//# sourceMappingURL=TimeoutError.js.map