all files / core/ _errors.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 "./errors/match-error";
import { ExactMatchError } from "./errors/exact-match-error";
import { EqualMatchError } from "./errors/equal-match-error";
import { RegexMatchError } from "./errors/regex-match-error";
import { TruthyMatchError } from "./errors/truthy-match-error";
import { ContentsMatchError } from "./errors/contents-match-error";
import { LessThanMatchError } from "./errors/less-than-match-error";
import { GreaterThanMatchError } from "./errors/greater-than-match-error";
import { ErrorMatchError } from "./errors/error-match-error";
import { FunctionCallMatchError } from "./errors/function-call-match-error";
 
export {
    MatchError,
    ExactMatchError,
    EqualMatchError,
    RegexMatchError,
    TruthyMatchError,
    ContentsMatchError,
    LessThanMatchError,
    GreaterThanMatchError,
    ErrorMatchError,
    FunctionCallMatchError
};