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