Class FormActionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.commons.lang.exception.NestableException
-
- net.sf.jguiraffe.gui.builder.components.FormBuilderException
-
- net.sf.jguiraffe.gui.builder.action.FormActionException
-
- All Implemented Interfaces:
Serializable
,org.apache.commons.lang.exception.Nestable
public class FormActionException extends FormBuilderException
An exception class indicating a problem with the form action framework.
- Version:
- $Id: FormActionException.java 205 2012-01-29 18:29:57Z oheger $
- Author:
- Oliver Heger
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FormActionException(String msg)
Creates a new instance ofFormActionException
and sets the error message.FormActionException(String msg, Throwable cause)
Creates a new instance ofFormActionException
and sets both the error message and the root cause.FormActionException(Throwable cause)
Creates a new instance ofFormActionException
and sets the root cause.
-
Method Summary
-
Methods inherited from class org.apache.commons.lang.exception.NestableException
getCause, getMessage, getMessage, getMessages, getThrowable, getThrowableCount, getThrowables, indexOfThrowable, indexOfThrowable, printPartialStackTrace, printStackTrace, printStackTrace, printStackTrace
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
-
-
-
Constructor Detail
-
FormActionException
public FormActionException(String msg)
Creates a new instance ofFormActionException
and sets the error message.- Parameters:
msg
- the error message
-
FormActionException
public FormActionException(String msg, Throwable cause)
Creates a new instance ofFormActionException
and sets both the error message and the root cause.- Parameters:
msg
- the error messagecause
- the root cause
-
FormActionException
public FormActionException(Throwable cause)
Creates a new instance ofFormActionException
and sets the root cause.- Parameters:
cause
- the root cause of this exception
-
-