atg.integrations
Class CommandTimeoutException
java.lang.Object
   java.lang.Throwable
java.lang.Throwable
       java.lang.Exception
java.lang.Exception
           atg.core.exception.ContainerException
atg.core.exception.ContainerException
               atg.integrations.CommandInvocationException
atg.integrations.CommandInvocationException
                   atg.integrations.CommandTimeoutException
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
 
 
 
 
| 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 | 
 
CLASS_VERSION
public static java.lang.String CLASS_VERSION
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.