public class ConfigurationError extends WsRuntimeFwException
ConfigurationError
is used to signal to the runtime
framework that a serious initialization error has occurred. The
server will shut down immediately.com.ibm.wsspi.runtime.component.WsComponent#initialize(Object)
,
Serialized FormConstructor and Description |
---|
ConfigurationError(java.lang.String msg)
Constructs a new
ConfigurationError with the specified
detail message. |
ConfigurationError(java.lang.String msg,
java.lang.Throwable t)
Constructs a new
ConfigurationError with the specified
detail message and cause. |
ConfigurationError(java.lang.Throwable t)
Constructs a new
ConfigurationError with the specified
cause and a message which typically contains the class and detail message
of cause . |
getCause, initCause
public ConfigurationError(java.lang.String msg)
ConfigurationError
with the specified
detail message. The cause is not initialized, and may subsequently be
initialized by a call to WsException.initCause(java.lang.Throwable)
msg
- the detail message. The detail message is saved for
later retrieval by the Throwable.getMessage()
method.public ConfigurationError(java.lang.Throwable t)
ConfigurationError
with the specified
cause and a message which typically contains the class and detail message
of cause
.
This constructor is useful for exceptions that are little more than
wrappers for other throwables.t
- the cause (which is saved for later retrieval by the
WsException.getCause()
method). (A null
value is
permitted, and indicates that the cause is nonexistent or
unknown.)public ConfigurationError(java.lang.String msg, java.lang.Throwable t)
ConfigurationError
with the specified
detail message and cause. Note that the detail message associated
with cause
is not automatically incorporated in
this exception's detail message.
msg
- the detail message (which is saved for later retrieval
by the Throwable.getMessage()
method).t
- the cause (which is saved for later retrieval by the
WsException.getCause()
method). (A null
value is
permitted, and indicates that the cause is nonexistent or
unknown.)