/* * Copyright (c) 1996, 2008, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.lang; /** * Signals that the class doesn't have a field of a specified name. * * @author unascribed * @since JDK1.1 */ public class NoSuchFieldException extends ReflectiveOperationException { private static final long serialVersionUID = -6143714805279938260L; /** * Constructor. */ public NoSuchFieldException() { super(); } /** * Constructor with a detail message. * * @param s the detail message */ public NoSuchFieldException(String s) { super(s); } }