frontend/.pnpm-store/v3/files/fc/88f006baa93c21e71f9beafd6ff44944ad564565509a1611b66ce58bb059c6df1de769d00e5537df316ccb3de9eba2d5e04b19b2ada08462dec732d8711681

14 lines
453 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var EmptyErrorImpl = (function () {
function EmptyErrorImpl() {
Error.call(this);
this.message = 'no elements in sequence';
this.name = 'EmptyError';
return this;
}
EmptyErrorImpl.prototype = Object.create(Error.prototype);
return EmptyErrorImpl;
})();
exports.EmptyError = EmptyErrorImpl;
//# sourceMappingURL=EmptyError.js.map