ArgumentOutOfRangeError.js 360 B

123456789
  1. import { createErrorClass } from './createErrorClass';
  2. export var ArgumentOutOfRangeError = createErrorClass(function (_super) {
  3. return function ArgumentOutOfRangeErrorImpl() {
  4. _super(this);
  5. this.name = 'ArgumentOutOfRangeError';
  6. this.message = 'argument out of range';
  7. };
  8. });
  9. //# sourceMappingURL=ArgumentOutOfRangeError.js.map