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 360B

123456789
  1. function ArgumentOutOfRangeErrorImpl() {
  2. Error.call(this);
  3. this.message = 'argument out of range';
  4. this.name = 'ArgumentOutOfRangeError';
  5. return this;
  6. }
  7. ArgumentOutOfRangeErrorImpl.prototype = Object.create(Error.prototype);
  8. export const ArgumentOutOfRangeError = ArgumentOutOfRangeErrorImpl;
  9. //# sourceMappingURL=ArgumentOutOfRangeError.js.map