public class WorkAreaInternalException
extends com.ibm.ws.exception.WsRuntimeException
Constructor and Description |
---|
WorkAreaInternalException()
Construct a new WorkAreaInternalException with a null detail message and an
uninitialized cause filed.
|
WorkAreaInternalException(java.lang.String msg)
Construct a new WorkAreaInternalException with the specified detail message and an
uninitialized cause field.
|
WorkAreaInternalException(java.lang.String msg,
java.lang.Throwable cause)
Construct a new WorkAreaInternalException with a null detail message and a cause field
set to the specified Throwable.
|
WorkAreaInternalException(java.lang.Throwable cause)
Construct a new WorkAreaInternalException with a null detail message and a cause field
set to the specified Throwable.
|
public WorkAreaInternalException()
WsRuntimeException.initCause(java.lang.Throwable)
method.
Delegates to the WsRuntimeException constructor.public WorkAreaInternalException(java.lang.String msg)
WsRuntimeException.initCause(java.lang.Throwable)
method.
Delegates to the WsRuntimeException constructor.
msg
- a detail message. Null is tolerated.public WorkAreaInternalException(java.lang.String msg, java.lang.Throwable cause)
WsRuntimeException.initCause(java.lang.Throwable)
method on this instance will
result in an exception. The value of the cause field may be retrieved at any time via
the WsRuntimeException.getCause()
method.
msg
- the detail message. Null is tolerated.cause
- the Throwable that was caught and is considered the root cause
of this exception. Null is tolerated.public WorkAreaInternalException(java.lang.Throwable cause)
WsRuntimeException.initCause(java.lang.Throwable)
method on this instance will
result in an exception. The value of the cause
field may be retrieved at any time via the WsRuntimeException.getCause()
method.
Delegates to the WsRuntimeException constructor.
cause
- the Throwable that was caught and is considered the root cause
of this exception. Null is tolerated.