Code coverage report for src/util/ArgumentOutOfRangeError.ts

Statements: 100% (7 / 7)      Branches: 100% (0 / 0)      Functions: 100% (2 / 2)      Lines: 100% (5 / 5)      Ignored: none     

All files » src/util/ » ArgumentOutOfRangeError.ts
1 2 3 4 5 61 1 10 10   1
export class ArgumentOutOfRangeError extends Error {
  constructor() {
    super('argument out of range');
    this.name = 'ArgumentOutOfRangeError';
  }
}