Class WindowBuilderException
- 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.window.WindowBuilderException
-
- All Implemented Interfaces:
Serializable
,org.apache.commons.lang.exception.Nestable
public class WindowBuilderException extends FormBuilderException
A specialized exception class used for reporting error conditions related to the window builder.
- Version:
- $Id: WindowBuilderException.java 205 2012-01-29 18:29:57Z oheger $
- Author:
- Oliver Heger
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WindowBuilderException(String msg)
Creates a new instance ofWindowBuilderException
and sets the error message.WindowBuilderException(String msg, Throwable cause)
Creates a new instance ofWindowBuilderException
and sets the error message and the root cause.WindowBuilderException(Throwable cause)
Creates a new instance ofWindowBuilderException
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
-
WindowBuilderException
public WindowBuilderException(String msg)
Creates a new instance ofWindowBuilderException
and sets the error message.- Parameters:
msg
- the error message
-
WindowBuilderException
public WindowBuilderException(Throwable cause)
Creates a new instance ofWindowBuilderException
and sets the root cause.- Parameters:
cause
- the exception's root cause
-
-