com.ibm.ws.exception
Class WsRuntimeFwException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.ws.exception.WsException
-
- com.ibm.ws.exception.WsRuntimeFwException
-
- All Implemented Interfaces:
- WsNestedException, java.io.Serializable
- Direct Known Subclasses:
- ComponentDisabledException, ConfigurationError, ConfigurationWarning, RuntimeError, RuntimeWarning
public class WsRuntimeFwException extends WsException
AWsRuntimeFwExceptionand its subclasses are conditions that the runtime framework might want to catch.Note: Since the Application Server only supports JDK 1.4 and newer JDKs, new exceptions should extend
java.lang.Exceptionwhich supports exception chaining.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description WsRuntimeFwException()Constructs a newWsRuntimeFwExceptionwithnullas its detail message.WsRuntimeFwException(java.lang.String s)Constructs a newWsRuntimeFwExceptionwith the specified detail message.WsRuntimeFwException(java.lang.String s, java.lang.Throwable t)Constructs a newWsRuntimeFwExceptionwith the specified detail message and cause.WsRuntimeFwException(java.lang.Throwable t)Constructs a newWsRuntimeFwExceptionwith the specified cause and a detail message which typically contains the class and detail message ofcause.
-
Method Summary
-
Methods inherited from class com.ibm.ws.exception.WsException
getCause, initCause
-
-
-
-
Constructor Detail
-
WsRuntimeFwException
public WsRuntimeFwException()
Constructs a newWsRuntimeFwExceptionwithnullas its detail message. The cause is not initialized, and may subsequently be initialized by a call toWsException.initCause(java.lang.Throwable)
-
WsRuntimeFwException
public WsRuntimeFwException(java.lang.String s)
Constructs a newWsRuntimeFwExceptionwith the specified detail message. The cause is not initialized, and may subsequently be initialized by a call toWsException.initCause(java.lang.Throwable)- Parameters:
s- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.
-
WsRuntimeFwException
public WsRuntimeFwException(java.lang.Throwable t)
Constructs a newWsRuntimeFwExceptionwith the specified cause and a detail message which typically contains the class and detail message ofcause. 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 theWsException.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-
WsRuntimeFwException
public WsRuntimeFwException(java.lang.String s, java.lang.Throwable t)Constructs a newWsRuntimeFwExceptionwith the specified detail message and cause.Note that the detail message associated with
causeis not automatically incorporated in this exception's detail message.- Parameters:
s- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).t- the cause (which is saved for later retrieval by theWsException.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-
-