com.ibm.websphere.workarea
Class WorkAreaInternalException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended bycom.ibm.ws.exception.WsRuntimeException
                  extended bycom.ibm.websphere.workarea.WorkAreaInternalException
All Implemented Interfaces:
java.io.Serializable, com.ibm.ws.exception.WsNestedException

public class WorkAreaInternalException
extends com.ibm.ws.exception.WsRuntimeException

The WorkAreaInternalException class is used for runtime exceptions that arise in the WorkArea service. Typically a message will be associated with this exception to further detail the exact cause of the problem.

See Also:
Serialized Form

Constructor Summary
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.
 
Methods inherited from class com.ibm.ws.exception.WsRuntimeException
getCause, initCause, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

WorkAreaInternalException

public WorkAreaInternalException()
Construct a new WorkAreaInternalException with a null detail message and an uninitialized cause filed. The cause may subsequently be initialized via calling the WsRuntimeException.initCause(java.lang.Throwable) method. Delegates to the WsRuntimeException constructor.


WorkAreaInternalException

public WorkAreaInternalException(java.lang.String msg)
Construct a new WorkAreaInternalException with the specified detail message and an uninitialized cause field. The cause may subsequently be initialized via calling the WsRuntimeException.initCause(java.lang.Throwable) method. Delegates to the WsRuntimeException constructor.


WorkAreaInternalException

public 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. Subsequent calls to the 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.

Parameters:
cause - the Throwable that was caught and is considered the root cause of this exception. Null is tolerated.

WorkAreaInternalException

public WorkAreaInternalException(java.lang.Throwable cause)
Construct a new WorkAreaInternalException with a null detail message and a cause field set to the specified Throwable. Subsequent calls to the 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.

Parameters:
cause - the Throwable that was caught and is considered the root cause of this exception. Null is tolerated.