Class CommandException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.eclipse.core.commands.common.CommandException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
CommandNotMappedException, ExecutionException, NotDefinedException, NotEnabledException, NotHandledException, ParameterValueConversionException, ParameterValuesException, SerializationException

public abstract class CommandException extends Exception
Signals that an exception occured within the command architecture.

This class is not intended to be extended by clients.

Since:
3.1
See Also:
Restriction:
This class is not intended to be subclassed by clients.
  • Constructor Details

    • CommandException

      public CommandException(String message)
      Creates a new instance of this class with the specified detail message.
      Parameters:
      message - the detail message; may be null.
    • CommandException

      public CommandException(String message, Throwable cause)
      Creates a new instance of this class with the specified detail message and cause.
      Parameters:
      message - the detail message; may be null.
      cause - the cause; may be null.