public static IVerifier IsNotEmpty <T>(this IVerifier target, IEnumerable <T> values, Exception exception)
 {
     return(target.IsNotEmpty(values, () => { throw exception; }));
 }