Package org.eclipse.ui.commands
Class ExecutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.eclipse.ui.commands.CommandException
org.eclipse.ui.commands.ExecutionException
- All Implemented Interfaces:
Serializable
Deprecated.
Please use the "org.eclipse.core.commands" plug-in instead. This
API is scheduled for deletion, see Bug 431177 for details
Signals that an exception occured during the execution of a command.
This class is not intended to be extended by clients.
- Since:
- 3.0
- See Also:
- Restriction:
- This class is scheduled for deletion.
-
Constructor Summary
ConstructorsConstructorDescriptionExecutionException(String message, Throwable cause) Deprecated.Creates a new instance of this class with the specified detail message and cause.Deprecated.Constructs a new instance ofExecutionExceptionusing an instance of the newExecutionException. -
Method Summary
Methods inherited from class org.eclipse.ui.commands.CommandException
getCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ExecutionException
Deprecated.Creates a new instance of this class with the specified detail message and cause.- Parameters:
message- the detail message.cause- the cause.
-
ExecutionException
Deprecated.Constructs a new instance ofExecutionExceptionusing an instance of the newExecutionException.- Parameters:
e- The exception from which this exception should be created; must not benull.- Since:
- 3.1
-