public static IVerifier IsNotRegex(this IVerifier target, string value, Regex ex, Exception exception)
 {
     return(target.IsNotRegex(value, ex, () => { throw exception; }));
 }