Class FormBuilderRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.sf.jguiraffe.gui.builder.components.FormBuilderRuntimeException
-
- All Implemented Interfaces:
Serializable
public class FormBuilderRuntimeException extends RuntimeException
An exception class for reporting runtime errors of the form builder framework.
- Version:
- $Id: FormBuilderRuntimeException.java 205 2012-01-29 18:29:57Z oheger $
- Author:
- Oliver Heger
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FormBuilderRuntimeException(String msg)
Creates a new instance ofFormBuilderRuntimeException
and initializes it with an error message.FormBuilderRuntimeException(String msg, Throwable cause)
Creates a new instance ofFormBuilderRuntimeException
and initializes it with an error message and a root cause,FormBuilderRuntimeException(Throwable cause)
Creates a new instance ofFormBuilderRuntimeException
and initializes it with a root cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
FormBuilderRuntimeException
public FormBuilderRuntimeException(String msg)
Creates a new instance ofFormBuilderRuntimeException
and initializes it with an error message.- Parameters:
msg
- the error message
-
FormBuilderRuntimeException
public FormBuilderRuntimeException(Throwable cause)
Creates a new instance ofFormBuilderRuntimeException
and initializes it with a root cause.- Parameters:
cause
- the root cause
-
-