Package org.eclipse.core.commands
Class ExecutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.eclipse.core.commands.common.CommandException
org.eclipse.core.commands.ExecutionException
- All Implemented Interfaces:
Serializable
Signals that an exception occured during the execution of a command.
This class is not intended to be extended by clients.
- Since:
- 3.1
- See Also:
-
Constructor Summary
ConstructorDescriptionExecutionException
(String message) Creates a new instance of this class with the specified detail message.ExecutionException
(String message, Throwable cause) Creates a new instance of this class with the specified detail message and cause. -
Method Summary
Methods inherited from class org.eclipse.core.commands.common.CommandException
getCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ExecutionException
Creates a new instance of this class with the specified detail message.- Parameters:
message
- the detail message; may benull
.- Since:
- 3.2
-
ExecutionException
Creates a new instance of this class with the specified detail message and cause.- Parameters:
message
- the detail message; may benull
.cause
- the cause; may benull
.
-