Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

EmptyError.js 341B

12345678910
  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