bfd3dd03d1761928b17a4e4c9679502208001e2cce84f28cd7e501c725bbd353b9092e3a435c116864247bd1b33b90bb098621dfcb838afad74c121a729bd7 274 B

1234567
  1. import { createErrorClass } from './createErrorClass';
  2. export const EmptyError = createErrorClass((_super) => function EmptyErrorImpl() {
  3. _super(this);
  4. this.name = 'EmptyError';
  5. this.message = 'no elements in sequence';
  6. });
  7. //# sourceMappingURL=EmptyError.js.map