com.ibm.websphere.ActivitySession

Class ActivitySessionException

  1. java.lang.Object
  2. extended byjava.lang.Throwable
  3. extended byjava.lang.Exception
  4. extended bycom.ibm.websphere.ActivitySession.ActivitySessionException
All implemented interfaces:
java.io.Serializable
Direct known subclasses:
ActivitySessionAlreadyActiveException, ActivitySessionCompletedException, ActivitySessionPendingException, ActivitySessionResetException, ContextPendingException, MixedOutcomeException, NoActivitySessionException, NotOriginatorException, NotProcessedException, NotSupportedException, SystemException, TimeoutOutOfRangeException, TransactionPendingException

  1. public class ActivitySessionException
  2. extends java.lang.Exception
ActivitySessionException is the superclass of all of the ActivitySession-specific exceptions that can be thrown by the ActivitySession service.
See Also:
Serialized Form

Constructor Summary

Constructor and Description
ActivitySessionException()
Constructs a new ActivitySessionException
ActivitySessionException(java.lang.Exception ex)
Constructs a new ActivitySessionException with the given nested exception
ActivitySessionException(java.lang.String msg)
Constructs a new ActivitySessionException with the given detail message
ActivitySessionException(java.lang.String msg,java.lang.Exception ex)
Constructs a new ActivitySessionException with the given detail message and nested exception.

Method Summary

Modifier and Type Method and Description
  1. java.lang.Exception
getNestedException()
Returns the exception nested within this ActivitySessionException.
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Constructor Detail

ActivitySessionException

  1. public ActivitySessionException( )
Constructs a new ActivitySessionException

ActivitySessionException

  1. public ActivitySessionException( java.lang.String msg)
Constructs a new ActivitySessionException with the given detail message
Parameters:
msg - The detail message

ActivitySessionException

  1. public ActivitySessionException( java.lang.Exception ex)
Constructs a new ActivitySessionException with the given nested exception
Parameters:
ex - The nested exception
See Also:

ActivitySessionException

  1. public ActivitySessionException( java.lang.String msg,
  2. java.lang.Exception ex)
Constructs a new ActivitySessionException with the given detail message and nested exception.
Parameters:
msg - The detail message
ex - The nested exception
See Also:

Method Detail

getNestedException

  1. public java.lang.Exception getNestedException( )
Returns the exception nested within this ActivitySessionException. The nested exception is typically the exception, if any, that caused this exception to be thrown.
Returns:
The nested exception