EmptyError.js 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