UNPKG

@acutmore/rxjs

Version:

Reactive Extensions for modern JavaScript

18 lines 785 B
/** * An error thrown when one or more errors have occurred during the * `unsubscribe` of a {@link Subscription}. */ var UnsubscriptionError = /** @class */ (function (_super) { __extends(UnsubscriptionError, _super); function UnsubscriptionError(errors) { var _this = _super.call(this, errors ? errors.length + " errors occurred during unsubscription:\n " + errors.map(function (err, i) { return i + 1 + ") " + err.toString(); }).join('\n ') : '') || this; _this.errors = errors; _this.name = 'UnsubscriptionError'; Object.setPrototypeOf(_this, UnsubscriptionError.prototype); return _this; } return UnsubscriptionError; }(Error)); export { UnsubscriptionError }; //# sourceMappingURL=UnsubscriptionError.js.map