Sha256: abc1885e7d7abe1e81484166675e4e970f235fb9b8c159253e026b141c91ecf1
Contents?: true
Size: 550 Bytes
Versions: 49
Compression:
Stored size: 550 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(public errors: any[]) { super(); const err: any = Error.call(this, errors ? `${errors.length} errors occurred during unsubscription: ${errors.map((err, i) => `${i + 1}) ${err.toString()}`).join('\n ')}` : ''); (<any> this).name = err.name = 'UnsubscriptionError'; (<any> this).stack = err.stack; (<any> this).message = err.message; } }
Version data entries
49 entries across 49 versions & 4 rubygems