frontend/.pnpm-store/v3/files/de/02dc2570ead225bbf946ceddd7f8ca65a816fc1bf3c2ab3b753a781099120e7303105c584537d46bdafdc75964e16e47144973edf78b971be169000ac19aaa

12 lines
390 B
Plaintext

const TimeoutErrorImpl = (() => {
function TimeoutErrorImpl() {
Error.call(this);
this.message = 'Timeout has occurred';
this.name = 'TimeoutError';
return this;
}
TimeoutErrorImpl.prototype = Object.create(Error.prototype);
return TimeoutErrorImpl;
})();
export const TimeoutError = TimeoutErrorImpl;
//# sourceMappingURL=TimeoutError.js.map