org.enhydra.barracuda.core.forms
Class DeferredValidationException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.enhydra.barracuda.plankton.exceptions.NestableException
              extended byorg.enhydra.barracuda.core.forms.ValidationException
                  extended byorg.enhydra.barracuda.core.forms.DeferredValidationException
All Implemented Interfaces:
Serializable

public class DeferredValidationException
extends ValidationException

This class defines a deferred validation exception. It's just like a standard validation exception, except that validation continues (so that we can collect all possible validation errors on a form at one time).

See Also:
Serialized Form

Field Summary
protected  List subExceptions
           
 
Fields inherited from class org.enhydra.barracuda.core.forms.ValidationException
sep, source
 
Constructor Summary
DeferredValidationException()
          The noargs public contructor for DeferredValidationException
DeferredValidationException(Object source)
          The public contructor for DeferredValidationException
DeferredValidationException(Object source, String s)
          The public contructor for DeferredValidationException
DeferredValidationException(Object source, String s, Exception ibaseException)
          The public contructor for DeferredValidationException
 
Methods inherited from class org.enhydra.barracuda.core.forms.ValidationException
addSubException, getExceptionList, getExceptionList, getSource, getSubExceptions, hasSubExceptions, toString
 
Methods inherited from class org.enhydra.barracuda.plankton.exceptions.NestableException
getBaseException, getRootException
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

subExceptions

protected List subExceptions
Constructor Detail

DeferredValidationException

public DeferredValidationException()
The noargs public contructor for DeferredValidationException


DeferredValidationException

public DeferredValidationException(Object source)
The public contructor for DeferredValidationException

Parameters:
source - the object which caused this error (usually a FormElement)

DeferredValidationException

public DeferredValidationException(Object source,
                                   String s)
The public contructor for DeferredValidationException

Parameters:
source - the object which caused this error (usually a FormElement)
s - a String describing the exception

DeferredValidationException

public DeferredValidationException(Object source,
                                   String s,
                                   Exception ibaseException)
The public contructor for DeferredValidationException

Parameters:
source - the object which caused this error (usually a FormElement)
s - a String describing the exception
ibaseException - the original exception to wrap within this exception


Copyright © 2003 BarracudaMVC.org All Rights Reserved.