()
| 5 | |
| 6 | export class ArrayUtilAmbiguousMatchError extends Error { |
| 7 | constructor() { |
| 8 | super('Given predicate results in more than one value being matched.'); |
| 9 | this.name = 'ArrayUtilAmbiguousMatchError'; |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | export class EmptyArrayError extends Error { |
nothing calls this directly
no outgoing calls
no test coverage detected