KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > lang > NoSuchFieldException


1 /*
2  * @(#)NoSuchFieldException.java 1.14 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package java.lang;
9
10 /**
11  * Signals that the class doesn't have a field of a specified name.
12  *
13  * @author unascribed
14  * @version 1.14, 12/19/03
15  * @since JDK1.1
16  */

17 public class NoSuchFieldException extends Exception JavaDoc {
18     /**
19      * Constructor.
20      */

21     public NoSuchFieldException() {
22     super();
23     }
24
25     /**
26      * Constructor with a detail message.
27      *
28      * @param s the detail message
29      */

30     public NoSuchFieldException(String JavaDoc s) {
31     super(s);
32     }
33 }
34
Popular Tags