org.liquidsite.core.web
Class FormHandlingException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.liquidsite.core.web.FormHandlingException
All Implemented Interfaces:
java.io.Serializable

public class FormHandlingException
extends java.lang.Exception

A form handling exception. This exception is thrown when the form handling failed. This can be caused by both user actions (such as removed locks) or by critical application errors (such as database connection problems). Any critical error present in this exception must already have been logged as such. This exception should only ever be logged as a warning.

See Also:
Serialized Form

Constructor Summary
FormHandlingException(java.lang.Exception cause)
          Creates a new form handling exception.
FormHandlingException(java.lang.String message)
          Creates a new form handling exception.
FormHandlingException(java.lang.String message, java.lang.Exception cause)
          Creates a new form handling exception.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FormHandlingException

public FormHandlingException(java.lang.String message)
Creates a new form handling exception.

Parameters:
message - the error message

FormHandlingException

public FormHandlingException(java.lang.Exception cause)
Creates a new form handling exception.

Parameters:
cause - the root cause to the error

FormHandlingException

public FormHandlingException(java.lang.String message,
                             java.lang.Exception cause)
Creates a new form handling exception.

Parameters:
message - the error message
cause - the root cause to the error