| 4 | * An error thrown when an Observable sequence has no elements. |
| 5 | */ |
| 6 | export class EmptyError extends Error { |
| 7 | constructor() { |
| 8 | super('no elements in sequence'); |
| 9 | this.name = 'EmptyError'; |
nothing calls this directly
no outgoing calls
no test coverage detected