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