Class GUIRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.sf.jguiraffe.gui.builder.utils.GUIRuntimeException
-
- All Implemented Interfaces:
Serializable
public class GUIRuntimeException extends RuntimeException
An exception class for reporting GUI related runtime errors.
- Version:
- $Id: GUIRuntimeException.java 205 2012-01-29 18:29:57Z oheger $
- Author:
- Oliver Heger
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GUIRuntimeException(String msg)
Creates a new instance ofGUIRuntimeException
and sets the error message.GUIRuntimeException(String msg, Throwable cause)
Creates a new instance ofGUIRuntimeException
and sets the error message and the root cause.GUIRuntimeException(Throwable cause)
Creates a new instance ofGUIRuntimeException
and sets 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
-
GUIRuntimeException
public GUIRuntimeException(String msg)
Creates a new instance ofGUIRuntimeException
and sets the error message.- Parameters:
msg
- the error message
-
GUIRuntimeException
public GUIRuntimeException(String msg, Throwable cause)
Creates a new instance ofGUIRuntimeException
and sets the error message and the root cause.- Parameters:
msg
- the error messagecause
- the root cause
-
GUIRuntimeException
public GUIRuntimeException(Throwable cause)
Creates a new instance ofGUIRuntimeException
and sets the root cause.- Parameters:
cause
- the cause of the exception
-
-