Class InitialisationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.github.bordertech.wcomponents.util.SystemException
-
- com.github.bordertech.wcomponents.InitialisationException
-
- All Implemented Interfaces:
Serializable
public class InitialisationException extends SystemException
This is a pretty fatal kind of exception, the kind that is thrown from the very core of the UI framework when initialisation completely fails.- Since:
- 1.0.0
- Version:
- 1/10/2009
- Author:
- Darian Bridge
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InitialisationException(String msg)
Creates a InitialisationException with the specified message.InitialisationException(String msg, Throwable throwable)
Creates a InitialisationException with the specified message and cause.InitialisationException(Throwable throwable)
Creates a InitialisationException with the specified 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
-
InitialisationException
public InitialisationException(String msg)
Creates a InitialisationException with the specified message.- Parameters:
msg
- the message.
-
InitialisationException
public InitialisationException(String msg, Throwable throwable)
Creates a InitialisationException with the specified message and cause.- Parameters:
msg
- the message.throwable
- the cause of the exception.
-
InitialisationException
public InitialisationException(Throwable throwable)
Creates a InitialisationException with the specified cause.- Parameters:
throwable
- the cause of the exception.
-
-