01: /*******************************************************************************
02: * Copyright (c) 2007 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: ******************************************************************************/package org.eclipse.ui.actions;
11:
12: import org.eclipse.core.commands.common.CommandException;
13:
14: /**
15: * Indicates that an action has no command mapping. The declaration can be
16: * updated to include a definitionId.
17: *
18: * @since 3.3
19: */
20: public class CommandNotMappedException extends CommandException {
21:
22: private static final long serialVersionUID = 1L;
23:
24: /**
25: * @param message
26: */
27: public CommandNotMappedException(String message) {
28: super (message);
29: }
30:
31: /**
32: * @param message
33: * @param cause
34: */
35: public CommandNotMappedException(String message, Throwable cause) {
36: super(message, cause);
37: }
38: }
|