Sha256: 71591ecdbe968030a3eff82bf9fb63ed71e25b158cbdb911870a21e5628e814c
Contents?: true
Size: 462 Bytes
Versions: 49
Compression:
Stored size: 462 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 = super('no elements in sequence'); this.name = err.name = 'EmptyError'; this.stack = err.stack; this.message = err.message; } } //# sourceMappingURL=EmptyError.js.map
Version data entries
49 entries across 49 versions & 4 rubygems