all files / core/errors/ _namespace.ts

100% Statements 20/20
100% Branches 0/0
100% Functions 0/0
100% Lines 20/20
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24        
import { MatchError} from "./match-error";
import { ExactMatchError } from "./exact-match-error";
import { EqualMatchError } from "./equal-match-error";
import { RegexMatchError } from "./regex-match-error";
import { TruthyMatchError } from "./truthy-match-error";
import { ContentsMatchError } from "./contents-match-error";
import { LessThanMatchError } from "./less-than-match-error";
import { GreaterThanMatchError } from "./greater-than-match-error";
import { ErrorMatchError } from "./error-match-error";
import { FunctionCallMatchError } from "./function-call-match-error";
 
export {
    MatchError,
    ExactMatchError,
    EqualMatchError,
    RegexMatchError,
    TruthyMatchError,
    ContentsMatchError,
    LessThanMatchError,
    GreaterThanMatchError,
    ErrorMatchError,
    FunctionCallMatchError
};