Re: Custom rule NullPointer errors

2004-12-30 Thread Tim Bailen
wellsfargo.com> writes: > > With the new version of Struts, we are getting a NullPointerException whenever custom rules are being run > because they are expecting a parameter list of: > > Object Bean, > ValidatorAction va, > Field field, > ActionErrors errors, > org.apache.commons.validator.V

Re: Custom rule NullPointer errors

2004-12-09 Thread Laconia Data Systems
Mick- The ActionForm.validate method return an ActionErrors object that encapsulates any validation errors that have been found. If no errors are found, return null or an ActionErrors object with no recorded error messages. The default implementation performs no validation and returns null. Subcla