UNPKG

wed

Version:

Wed is a schema-aware editor for XML documents.

23 lines (20 loc) 554 B
define(function(require,exports,module){ /** * An error thrown when an action is invalid because the object has been * unsubscribed. * * @see {@link Subject} * @see {@link BehaviorSubject} * * @class ObjectUnsubscribedError */ export class ObjectUnsubscribedError extends Error { constructor() { super('object unsubscribed'); this.name = 'ObjectUnsubscribedError'; Object.setPrototypeOf(this, ObjectUnsubscribedError.prototype); } } //# sourceMappingURL=ObjectUnsubscribedError.js.map return module.exports; });