atg.integrations
Class InvalidInputException

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.InvalidInputException
All Implemented Interfaces:
ContainableException, java.io.Serializable

public class InvalidInputException
extends CommandInvocationException

Exception used to indicate invalid input to a RPC command execution.

See Also:
CommandInvocationException, Serialized Form

Field Summary
static java.lang.String CLASS_VERSION
           
 
Constructor Summary
InvalidInputException()
          Default constructor.
InvalidInputException(java.lang.String pStr)
          Constructor which takes String input.
InvalidInputException(java.lang.String pStr, java.lang.Throwable pSourceException)
          Constructor that takes another exception to wrap it, and also String.
InvalidInputException(java.lang.Throwable pSourceException)
          Constructor that takes another exception to wrap it.
 
Method Summary
 
Methods inherited from class atg.core.exception.ContainerException
getMessageArguments, getSourceException, printStackTrace, printStackTrace, printStackTrace, printStackTrace, setMessageArguments, 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

InvalidInputException

public InvalidInputException()
Default constructor.


InvalidInputException

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


InvalidInputException

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


InvalidInputException

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