EmptyError.js 290 B

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