atg.integrations
Class CommandTimeoutException

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

public class CommandTimeoutException
extends CommandInvocationException

Exception used to indicate time out during RPC command execution. Since timeout during RPC command doesn't indicate whether the command execution is successfull at the back end or not, we need to handle this case specially. All commands invoking RPC calls should throw this exception for timeouts and CommandInvocationException for everything else.

See Also:
CommandInvocationException, Serialized Form

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

CommandTimeoutException

public CommandTimeoutException()
Default constructor.


CommandTimeoutException

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


CommandTimeoutException

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


CommandTimeoutException

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