1 2 3 4 5 6 7 8 9 | 1× 1× 1× 1× | import { MatchError } from "./match-error"; export class GreaterThanMatchError extends MatchError { public constructor(actualValue: number, lowerLimit: number, shouldMatch: boolean) { super(actualValue, lowerLimit, `Expected ${actualValue} ${!shouldMatch ? "not ": ""}to be greater than ${lowerLimit}.`); } } |