EmptyError.js 341 B

1234567891011
  1. /** PURE_IMPORTS_START PURE_IMPORTS_END */
  2. function EmptyErrorImpl() {
  3. Error.call(this);
  4. this.message = 'no elements in sequence';
  5. this.name = 'EmptyError';
  6. return this;
  7. }
  8. EmptyErrorImpl.prototype = /*@__PURE__*/ Object.create(Error.prototype);
  9. export var EmptyError = EmptyErrorImpl;
  10. //# sourceMappingURL=EmptyError.js.map