KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > actions > CommandNotMappedException


1 /*******************************************************************************
2  * Copyright (c) 2007 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  ******************************************************************************/

11
12 package org.eclipse.ui.actions;
13
14 import org.eclipse.core.commands.common.CommandException;
15
16 /**
17  * Indicates that an action has no command mapping. The declaration can be
18  * updated to include a definitionId.
19  *
20  * @since 3.3
21  */

22 public class CommandNotMappedException extends CommandException {
23
24     private static final long serialVersionUID = 1L;
25
26     /**
27      * @param message
28      */

29     public CommandNotMappedException(String JavaDoc message) {
30         super(message);
31     }
32
33     /**
34      * @param message
35      * @param cause
36      */

37     public CommandNotMappedException(String JavaDoc message, Throwable JavaDoc cause) {
38         super(message, cause);
39     }
40 }
41
Popular Tags