Package org.eclipse.ui.actions
Class CommandNotMappedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.eclipse.core.commands.common.CommandException
-
- org.eclipse.ui.actions.CommandNotMappedException
-
- All Implemented Interfaces:
java.io.Serializable
public class CommandNotMappedException extends CommandException
Indicates that an action has no command mapping. The declaration can be updated to include a definitionId.- Since:
- 3.3
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CommandNotMappedException(java.lang.String message)CommandNotMappedException(java.lang.String message, java.lang.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
-
-
-
-
Constructor Detail
-
CommandNotMappedException
public CommandNotMappedException(java.lang.String message)
- Parameters:
message- the detail message; may benull.
-
CommandNotMappedException
public CommandNotMappedException(java.lang.String message, java.lang.Throwable cause)Creates a new instance of this class with the specified detail message and cause.- Parameters:
message- the detail message; may benullcause- the cause; may benull.
-
-