01: /*******************************************************************************
02: * Copyright (c) 2000, 2006 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.activities;
11:
12: /**
13: * Signals that an attempt was made to access the properties of an undefined
14: * object.
15: *
16: * <p>
17: * This class is not intended to be extended by clients.
18: * </p>
19: *
20: * @see IActivity
21: * @see ICategory
22: * @since 3.0
23: */
24: public final class NotDefinedException extends Exception {
25:
26: /**
27: * Generated serial version UID for this class.
28: * @since 3.1
29: */
30: private static final long serialVersionUID = 4050201929596811061L;
31:
32: /**
33: * Creates a new instance of this class with no specified detail message.
34: */
35: public NotDefinedException() {
36: //no-op
37: }
38:
39: /**
40: * Creates a new instance of this class with the specified detail message.
41: *
42: * @param s
43: * the detail message.
44: */
45: public NotDefinedException(String s) {
46: super(s);
47: }
48: }
|