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