EmptyError.js 310 B

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