Sha256: 2f3b10e8e0b4ec91dd8e8746277794a34652f317a3285fed682da95c3330af75

Contents?: true

Size: 433 Bytes

Versions: 49

Compression:

Stored size: 433 Bytes

Contents

/**
 * An error thrown when an Observable or a sequence was queried but has no
 * elements.
 *
 * @see {@link first}
 * @see {@link last}
 * @see {@link single}
 *
 * @class EmptyError
 */
export class EmptyError extends Error {
  constructor() {
    const err: any = super('no elements in sequence');
    (<any> this).name = err.name = 'EmptyError';
    (<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/EmptyError.ts
govuk_publishing_components-16.20.1 node_modules/rxjs/src/util/EmptyError.ts
govuk_publishing_components-16.20.0 node_modules/rxjs/src/util/EmptyError.ts
govuk_publishing_components-16.19.0 node_modules/rxjs/src/util/EmptyError.ts
govuk_publishing_components-16.18.0 node_modules/rxjs/src/util/EmptyError.ts
govuk_publishing_components-16.17.0 node_modules/rxjs/src/util/EmptyError.ts
locomotivecms-4.0.0.alpha1 app/javascript/node_modules/inquirer/node_modules/rxjs/src/util/EmptyError.ts
locomotivecms-3.4.0 app/javascript/node_modules/rxjs/src/util/EmptyError.ts
dragonfly_puppeteer-0.1.0 node_modules/rxjs/src/util/EmptyError.ts