com.ibm.ws.exception
Class RuntimeWarning
- java.lang.Object
java.lang.Throwable
java.lang.Exception
com.ibm.ws.exception.WsException
com.ibm.ws.exception.WsRuntimeFwException
com.ibm.ws.exception.RuntimeWarning
All implemented interfaces:
com.ibm.ws.exception.WsNestedException, java.io.Serializable
- public class RuntimeWarning
- extends WsRuntimeFwException
RuntimeWarning
is used to signal to the runtime
framework that a non-fatal error has been encountered. Server startup will
proceed as usual.
See Also:
WsComponent.start()
,
Serialized FormConstructor Summary
Constructor and Description |
---|
RuntimeWarning(java.lang.String msg)
Constructs a new
RuntimeWarning with the specified
detail message.
|
RuntimeWarning(java.lang.String msg,java.lang.Throwable t)
Constructs a new
RuntimeWarning with the specified
detail message and cause.
|
RuntimeWarning(java.lang.Throwable t)
Constructs a new
RuntimeWarning with the specified
cause and a detail message of
(cause==null ?
|
Method Summary
Methods inherited from class com.ibm.ws.exception.WsException |
---|
getCause, initCause |
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail
RuntimeWarning
- public RuntimeWarning(java.lang.String msg)
Parameters:
msg
- the detail message. The detail message is saved for
later retrieval by the Throwable.getMessage()
method. RuntimeWarning
- public RuntimeWarning(java.lang.Throwable t)
Constructs a new
RuntimeWarning
with the specified
cause and a detail message of
(cause==null ? null : cause.toString())
(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.
Parameters:
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.) RuntimeWarning
- public RuntimeWarning(java.lang.String msg,
- java.lang.Throwable t)
Constructs a new
RuntimeWarning
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.
Parameters:
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.)
RuntimeWarning
with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call toWsException.initCause(java.lang.Throwable)