FileDocCategorySizeDatePackage
NoSuchFieldException.javaAPI DocJava SE 5 API660Fri Aug 26 14:57:02 BST 2005java.lang

NoSuchFieldException

public class NoSuchFieldException extends Exception
Signals that the class doesn't have a field of a specified name.
author
unascribed
version
1.14, 12/19/03
since
JDK1.1

Fields Summary
Constructors Summary
public NoSuchFieldException()
Constructor.

	super();
    
public NoSuchFieldException(String s)
Constructor with a detail message.

param
s the detail message

	super(s);
    
Methods Summary