Code coverage report for src/util/EmptyError.ts

Statements: 100% (5 / 5)      Branches: 100% (0 / 0)      Functions: 100% (1 / 1)      Lines: 100% (4 / 4)      Ignored: none     

All files » src/util/ » EmptyError.ts
1 2 3 42 12 12 1
export class EmptyError implements Error {
  name = 'EmptyError';
  message = 'no elements in sequence';
}