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.

ArgumentOutOfRangeError.js 417B

12345678910
  1. /** PURE_IMPORTS_START PURE_IMPORTS_END */
  2. function ArgumentOutOfRangeErrorImpl() {
  3. Error.call(this);
  4. this.message = 'argument out of range';
  5. this.name = 'ArgumentOutOfRangeError';
  6. return this;
  7. }
  8. ArgumentOutOfRangeErrorImpl.prototype = /*@__PURE__*/ Object.create(Error.prototype);
  9. export var ArgumentOutOfRangeError = ArgumentOutOfRangeErrorImpl;
  10. //# sourceMappingURL=ArgumentOutOfRangeError.js.map