public static IVerifier IsStringNotEqual(this IVerifier target, string value1, string value2, Exception exception)
 {
     return(target.IsStringNotEqual(value1, value2, () => { throw exception; }));
 }