oracle.apps.fnd.wf.engine
Class ExecutionException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--oracle.apps.fnd.wf.common.WorkflowException
                    |
                    +--oracle.apps.fnd.wf.engine.WorkflowEngineException
                          |
                          +--oracle.apps.fnd.wf.engine.ExecutionException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
UnhandledFaultException, UserFaultException

public class ExecutionException
extends WorkflowEngineException

This exception must be thrown by an executor when it fails to execute a function assigned to an activity. The executor must provide detailed information as why the function can not be executed. For phase II, this is only an internal exception as all the executors seeded by us. 05/23/2003 Anping Wang Add java comments

See Also:
Serialized Form

Field Summary
static java.lang.String RCS_ID
           
static boolean RCS_ID_RECORDED
           
 
Constructor Summary
ExecutionException(java.lang.Object pSource, java.lang.String pMsg)
          DOCUMENT ME!
ExecutionException(java.lang.Object pSource, java.lang.Throwable pThrowable)
          Creates a new ExecutionException object.
 
Method Summary
 java.lang.String getMessage()
           
 
Methods inherited from class oracle.apps.fnd.wf.engine.WorkflowEngineException
printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class oracle.apps.fnd.wf.common.WorkflowException
getRootException, getSource
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

RCS_ID

public static final java.lang.String RCS_ID

RCS_ID_RECORDED

public static final boolean RCS_ID_RECORDED
Constructor Detail

ExecutionException

public ExecutionException(java.lang.Object pSource,
                          java.lang.Throwable pThrowable)
Creates a new ExecutionException object.
Parameters:
pSource - Parameter
pThrowable - Parameter

ExecutionException

public ExecutionException(java.lang.Object pSource,
                          java.lang.String pMsg)
DOCUMENT ME!
Parameters:
pSource - object/class where the exception occurred
pMsg - Message for the cause of this exception
Method Detail

getMessage

public java.lang.String getMessage()
Overrides:
getMessage in class java.lang.Throwable