Hi,
In the context of Spring Webflow 2.0.x......
Is it possible to REMOVE a validation error from within the Spring Errors object during validation? I cant see anything in the API.
i.e.
public class MyValidator implements Validator {
.......
public void validate(Object target, Errors errors) {
MyForm form = (MyForm) target;
errors.remove(someError); // pseudo code
}
}