1 /*2 * @(#)NoSuchFieldException.java 1.14 03/12/193 *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 unascribed14 * @version 1.14, 12/19/0315 * @since JDK1.116 */17 public class NoSuchFieldException extends Exception {18 /**19 * Constructor.20 */21 public NoSuchFieldException() {22 super();23 }24 25 /**26 * Constructor with a detail message.27 *28 * @param s the detail message29 */30 public NoSuchFieldException(String s) {31 super(s);32 }33 }34