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

NoSuchMethodException

public class NoSuchMethodException extends Exception
Thrown when a particular method cannot be found.
author
unascribed
version
1.13, 12/19/03
since
JDK1.0

Fields Summary
Constructors Summary
public NoSuchMethodException()
Constructs a NoSuchMethodException without a detail message.

	super();
    
public NoSuchMethodException(String s)
Constructs a NoSuchMethodException with a detail message.

param
s the detail message.

	super(s);
    
Methods Summary