frontend/.pnpm-store/v3/files/c9/bfd3dd03d1761928b17a4e4c9679502208001e2cce84f28cd7e501c725bbd353b9092e3a435c116864247bd1b33b90bb098621dfcb838afad74c121a729bd7

7 lines
274 B
Plaintext

import { createErrorClass } from './createErrorClass';
export const EmptyError = createErrorClass((_super) => function EmptyErrorImpl() {
_super(this);
this.name = 'EmptyError';
this.message = 'no elements in sequence';
});
//# sourceMappingURL=EmptyError.js.map