atg.workflow
Class WorkflowException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by atg.core.exception.ContainerException
              extended by atg.workflow.WorkflowException
All Implemented Interfaces:
ContainableException, java.io.Serializable
Direct Known Subclasses:
ActorAccessException, MissingWorkflowDescriptionException

public class WorkflowException
extends ContainerException

An exception that occurs when operating on workflows.

See Also:
Serialized Form

Field Summary
static java.lang.String CLASS_VERSION
          Class version string
 
Constructor Summary
WorkflowException()
          Constructs a new WorkflowException.
WorkflowException(java.lang.String pString)
          Constructs a new WorkflowException with the given message.
WorkflowException(java.lang.String pString, java.lang.Throwable pRootCause)
          Constructs a new WorkflowException with the given message and root exception.
WorkflowException(java.lang.Throwable pRootCause)
          Constructs a new WorkflowException with the given root exception.
 
Method Summary
 
Methods inherited from class atg.core.exception.ContainerException
getSourceException, printStackTrace, printStackTrace, printStackTrace, printStackTrace, setSourceException, toString, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

CLASS_VERSION

public static java.lang.String CLASS_VERSION
Class version string

Constructor Detail

WorkflowException

public WorkflowException()
Constructs a new WorkflowException.


WorkflowException

public WorkflowException(java.lang.String pString)
Constructs a new WorkflowException with the given message.


WorkflowException

public WorkflowException(java.lang.Throwable pRootCause)
Constructs a new WorkflowException with the given root exception.


WorkflowException

public WorkflowException(java.lang.String pString,
                         java.lang.Throwable pRootCause)
Constructs a new WorkflowException with the given message and root exception.