Sha256: 729ebf1fcff4eb8efcb3ff5daf5463024abd387bdc5b6f0d0524c357516337b1
Contents?: true
Size: 614 Bytes
Versions: 49
Compression:
Stored size: 614 Bytes
Contents
/** * An error thrown when one or more errors have occurred during the * `unsubscribe` of a {@link Subscription}. */ export class UnsubscriptionError extends Error { constructor(errors) { super(); this.errors = errors; const err = Error.call(this, errors ? `${errors.length} errors occurred during unsubscription: ${errors.map((err, i) => `${i + 1}) ${err.toString()}`).join('\n ')}` : ''); this.name = err.name = 'UnsubscriptionError'; this.stack = err.stack; this.message = err.message; } } //# sourceMappingURL=UnsubscriptionError.js.map
Version data entries
49 entries across 49 versions & 4 rubygems