org.barracudamvc.core.forms
Class UnableToValidateException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.barracudamvc.plankton.exceptions.NestableException
org.barracudamvc.core.forms.ValidationException
org.barracudamvc.core.forms.UnableToValidateException
- All Implemented Interfaces:
- Serializable
- public class UnableToValidateException
- extends ValidationException
This exception indicates the Validator was not able to validate
the incoming value. Usually thrown due to a type mismatch (ie. the
validator is expecting a number and it gets an alphanumeric string
or something like that), if this occurs it probably indicates you are
improperly using a validator.
- See Also:
- Serialized Form
subExceptions
protected List subExceptions
UnableToValidateException
public UnableToValidateException()
- The noargs public contructor for UnableToValidateException
UnableToValidateException
public UnableToValidateException(Object source)
- The public contructor for UnableToValidateException
- Parameters:
source
- the object which caused this error (usually a
FormElement)
UnableToValidateException
public UnableToValidateException(Object source,
String s)
- The public contructor for UnableToValidateException
- Parameters:
source
- the object which caused this error (usually a
FormElement)s
- a String describing the exception
UnableToValidateException
public UnableToValidateException(Object source,
String s,
Exception ibaseException)
- The public contructor for UnableToValidateException
- Parameters:
source
- the object which caused this error (usually a
FormElement)s
- a String describing the exceptionibaseException
- the original exception to wrap within this exception
Copyright © 2004 BarracudaMVC.org All Rights Reserved.