15fac59eaeb935a40ba9dd8f8fc4c40622e9abe15dd53daea32003f07dfb33dc9c98666129474df00cdd25528fcf03aeb872ed156d983c804602e29d6d0341 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