1 11 12 package org.eclipse.ui.actions; 13 14 import org.eclipse.core.commands.common.CommandException; 15 16 22 public class CommandNotMappedException extends CommandException { 23 24 private static final long serialVersionUID = 1L; 25 26 29 public CommandNotMappedException(String message) { 30 super(message); 31 } 32 33 37 public CommandNotMappedException(String message, Throwable cause) { 38 super(message, cause); 39 } 40 } 41 | Popular Tags |