| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1 4 1 4 4 4 1 1 | 'use strict';
exports.__esModule = true;
function _classCallCheck(instance, Constructor) { Iif (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }
var ArgumentOutOfRangeError = function ArgumentOutOfRangeError() {
_classCallCheck(this, ArgumentOutOfRangeError);
this.name = 'ArgumentOutOfRangeError';
this.message = 'argument out of range';
};
exports['default'] = ArgumentOutOfRangeError;
module.exports = exports['default']; |