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