Sha256: c42a9ad898d1db35556cc37cd794a4e2c7d9509b0e81060f159fdd135d4cd534

Contents?: true

Size: 460 Bytes

Versions: 49

Compression:

Stored size: 460 Bytes

Contents

/**
 * 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() {
    const err: any = super('object unsubscribed');
    (<any> this).name = err.name = 'ObjectUnsubscribedError';
    (<any> this).stack = err.stack;
    (<any> this).message = err.message;
  }
}

Version data entries

49 entries across 49 versions & 4 rubygems

Version Path
govuk_publishing_components-16.21.0 node_modules/rxjs/src/util/ObjectUnsubscribedError.ts
govuk_publishing_components-16.20.1 node_modules/rxjs/src/util/ObjectUnsubscribedError.ts
govuk_publishing_components-16.20.0 node_modules/rxjs/src/util/ObjectUnsubscribedError.ts
govuk_publishing_components-16.19.0 node_modules/rxjs/src/util/ObjectUnsubscribedError.ts
govuk_publishing_components-16.18.0 node_modules/rxjs/src/util/ObjectUnsubscribedError.ts
govuk_publishing_components-16.17.0 node_modules/rxjs/src/util/ObjectUnsubscribedError.ts
locomotivecms-4.0.0.alpha1 app/javascript/node_modules/inquirer/node_modules/rxjs/src/util/ObjectUnsubscribedError.ts
locomotivecms-3.4.0 app/javascript/node_modules/rxjs/src/util/ObjectUnsubscribedError.ts
dragonfly_puppeteer-0.1.0 node_modules/rxjs/src/util/ObjectUnsubscribedError.ts