Package net.sf.jguiraffe.gui.forms
Class FormRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.sf.jguiraffe.gui.forms.FormRuntimeException
-
- All Implemented Interfaces:
Serializable
public class FormRuntimeException extends RuntimeException
An exception class for reporting runtime exceptions related to the form framework.
- Version:
- $Id: FormRuntimeException.java 205 2012-01-29 18:29:57Z oheger $
- Author:
- Oliver Heger
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FormRuntimeException()
Creates a new instance ofFormRuntimeException
.FormRuntimeException(String msg)
Creates a new instance ofFormRuntimeException
and initializes it with an error message.FormRuntimeException(String msg, Throwable cause)
Creates a new instance ofFormRuntimeException
and initializes it with an error message and the root cause.FormRuntimeException(Throwable cause)
Creates a new instance ofFormRuntimeException
and initializes it with the 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
-
FormRuntimeException
public FormRuntimeException()
Creates a new instance ofFormRuntimeException
.
-
FormRuntimeException
public FormRuntimeException(String msg)
Creates a new instance ofFormRuntimeException
and initializes it with an error message.- Parameters:
msg
- the error message
-
FormRuntimeException
public FormRuntimeException(Throwable cause)
Creates a new instance ofFormRuntimeException
and initializes it with the root cause.- Parameters:
cause
- the root cause
-
-