KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > activities > NotDefinedException


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 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.activities;
13
14 /**
15  * Signals that an attempt was made to access the properties of an undefined
16  * object.
17  *
18  * <p>
19  * This class is not intended to be extended by clients.
20  * </p>
21  *
22  * @see IActivity
23  * @see ICategory
24  * @since 3.0
25  */

26 public final class NotDefinedException extends Exception JavaDoc {
27
28     /**
29      * Generated serial version UID for this class.
30      * @since 3.1
31      */

32     private static final long serialVersionUID = 4050201929596811061L;
33
34     /**
35      * Creates a new instance of this class with no specified detail message.
36      */

37     public NotDefinedException() {
38         //no-op
39
}
40
41     /**
42      * Creates a new instance of this class with the specified detail message.
43      *
44      * @param s
45      * the detail message.
46      */

47     public NotDefinedException(String JavaDoc s) {
48         super(s);
49     }
50 }
51
Popular Tags