UNPKG

wed

Version:

Wed is a schema-aware editor for XML documents.

24 lines (21 loc) 624 B
define(function(require,exports,module){ /** * An error thrown when an element was queried at a certain index of an * Observable, but no such index or position exists in that sequence. * * @see {@link elementAt} * @see {@link take} * @see {@link takeLast} * * @class ArgumentOutOfRangeError */ export class ArgumentOutOfRangeError extends Error { constructor() { super('argument out of range'); this.name = 'ArgumentOutOfRangeError'; Object.setPrototypeOf(this, ArgumentOutOfRangeError.prototype); } } //# sourceMappingURL=ArgumentOutOfRangeError.js.map return module.exports; });