public static IVerifier Is(this IVerifier target, Func <bool> verifier, Exception exception)
 {
     return(target.Is(verifier, () => { throw exception; }));
 }