1 /******************************************************************************* 2 * Copyright (c) 2004, 2005 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 package org.eclipse.core.commands; 12 13 import org.eclipse.core.commands.common.CommandException; 14 15 /** 16 * Signals that an attempt was made to access the properties of an unhandled 17 * object. 18 * <p> 19 * This class is not intended to be extended by clients. 20 * </p> 21 * 22 * @since 3.1 23 */ 24 public final class NotHandledException extends CommandException { 25 26 /** 27 * Generated serial version UID for this class. 28 * 29 * @since 3.1 30 */ 31 private static final long serialVersionUID = 3256446914827726904L; 32 33 /** 34 * Creates a new instance of this class with the specified detail message. 35 * 36 * @param s 37 * the detail message. 38 */ 39 public NotHandledException(final String s) { 40 super(s); 41 } 42 } 43