frontend/.pnpm-store/v3/files/f3/4f2a6fd2ce7acfc73ca3ca912a678e6542c6c82ab9490bc783397439d0db87474583d74c7e77b7929156dea3fec3955ca0681b400052594ff40ce80fd9c64d

12 lines
377 B
Plaintext

const EmptyErrorImpl = (() => {
function EmptyErrorImpl() {
Error.call(this);
this.message = 'no elements in sequence';
this.name = 'EmptyError';
return this;
}
EmptyErrorImpl.prototype = Object.create(Error.prototype);
return EmptyErrorImpl;
})();
export const EmptyError = EmptyErrorImpl;
//# sourceMappingURL=EmptyError.js.map