You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
770 B
53 lines
770 B
/*
|
|
* 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);
|
|
}
|
|
}
|