com.iplanet.jato.command
Class CommandException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.iplanet.jato.util.WrapperException
                    |
                    +--com.iplanet.jato.command.CommandException
All Implemented Interfaces:
RootCauseException, java.io.Serializable

public class CommandException
extends WrapperException

Thrown when a Command encounters an unexpected error during its execution.

Since:
JATO/1.2
Version:
JATO/1.2.2 $Id: CommandException.java,v 1.6 2002/03/16 03:26:29 todd Exp $
See Also:
Command, Serialized Form

Constructor Summary
CommandException()
          Default constructor
CommandException(java.lang.String message)
          Create an instance with the specified error message
CommandException(java.lang.String message, java.lang.Throwable rootCause)
          Create an instance with the specified error message and root cause exception
CommandException(java.lang.Throwable rootCause)
          Create an instance with the specified root cause exception
 
Methods inherited from class com.iplanet.jato.util.WrapperException
getException, getRootCause, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CommandException

public CommandException()
Default constructor

CommandException

public CommandException(java.lang.String message)
Create an instance with the specified error message

CommandException

public CommandException(java.lang.Throwable rootCause)
Create an instance with the specified root cause exception

CommandException

public CommandException(java.lang.String message,
                        java.lang.Throwable rootCause)
Create an instance with the specified error message and root cause exception