public static IVerifier IsTrue(this IVerifier target, bool value, Exception exception)
 {
     return(target.IsTrue(value, () => { throw exception; }));
 }