public static IVerifier IsNotNull(this IVerifier target, object value, Exception exception)
 {
     return(target.IsNotNull(value, () => { throw exception; }));
 }