atg.integrations
Class CommandInvocationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by atg.core.exception.ContainerException
              extended by atg.integrations.CommandInvocationException
All Implemented Interfaces:
ContainableException, java.io.Serializable
Direct Known Subclasses:
CommandTimeoutException, InvalidInputException

public class CommandInvocationException
extends ContainerException

Base exception that is thrown by the execute() and executeCommand() methods of the Command and CommandHandler interface respectively.

This exception should wrap the underlying exception that was thrown by a particular transport or application.

This class extends ContainerException defined in atg.core.exception

See Also:
Serialized Form

Field Summary
static java.lang.String CLASS_VERSION
           
 
Constructor Summary
CommandInvocationException()
          Default constructor.
CommandInvocationException(java.lang.String pStr)
          Constructor which takes String input.
CommandInvocationException(java.lang.String pStr, java.lang.Throwable pSourceException)
          Constructor that takes another exception to wrap it, and also String.
CommandInvocationException(java.lang.Throwable pSourceException)
          Constructor that takes another exception to wrap it.
 
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
Constructor Detail

CommandInvocationException

public CommandInvocationException()
Default constructor.


CommandInvocationException

public CommandInvocationException(java.lang.String pStr)
Constructor which takes String input.


CommandInvocationException

public CommandInvocationException(java.lang.Throwable pSourceException)
Constructor that takes another exception to wrap it.


CommandInvocationException

public CommandInvocationException(java.lang.String pStr,
                                  java.lang.Throwable pSourceException)
Constructor that takes another exception to wrap it, and also String.