com.ail.core.command
Class CommandInvocationError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by com.ail.core.BaseError
              extended by com.ail.core.command.CommandInvocationError
All Implemented Interfaces:
java.io.Serializable

public class CommandInvocationError
extends BaseError

This error is thrown if an unrecoverable error occurs whilst a command is being invoked.

Version:
$Revision: 1.2 $
See Also:
Serialized Form

Constructor Summary
CommandInvocationError(BaseException e)
          Constructor
CommandInvocationError(java.lang.String description)
          Constructor
CommandInvocationError(java.lang.String description, java.lang.Throwable target)
          Constructor
 
Method Summary
 
Methods inherited from class com.ail.core.BaseError
getDescription, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, setStackTrace
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CommandInvocationError

public CommandInvocationError(java.lang.String description,
                              java.lang.Throwable target)
Constructor

Parameters:
description - A description of the error.
target - The exception that caused this error to be thrown.

CommandInvocationError

public CommandInvocationError(java.lang.String description)
Constructor

Parameters:
description - A description of the error

CommandInvocationError

public CommandInvocationError(BaseException e)
Constructor

Parameters:
e - An exception to wrap.