Class FormBuilderException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.commons.lang.exception.NestableException
-
- net.sf.jguiraffe.gui.builder.components.FormBuilderException
-
- All Implemented Interfaces:
Serializable
,org.apache.commons.lang.exception.Nestable
- Direct Known Subclasses:
FormActionException
,WindowBuilderException
public class FormBuilderException extends org.apache.commons.lang.exception.NestableException
An exception class for reporting errors of the form builder framework.
- Version:
- $Id: FormBuilderException.java 205 2012-01-29 18:29:57Z oheger $
- Author:
- Oliver Heger
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FormBuilderException(String msg)
Creates a new instance ofFormBuilderException
and sets the error message.FormBuilderException(String msg, Throwable cause)
Creates a new instance ofFormBuilderException
and sets the error message and the root cause.FormBuilderException(Throwable cause)
Creates a new instance ofFormBuilderException
and sets the root cause of the exception.
-
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
-
FormBuilderException
public FormBuilderException(String msg)
Creates a new instance ofFormBuilderException
and sets the error message.- Parameters:
msg
- the error message
-
FormBuilderException
public FormBuilderException(Throwable cause)
Creates a new instance ofFormBuilderException
and sets the root cause of the exception.- Parameters:
cause
- the root cause
-
-