FileDocCategorySizeDatePackage
InvalidMethodException.javaAPI DocJava SE 5 API3372Fri Aug 26 14:55:26 BST 2005com.sun.org.apache.bcel.internal.verifier.exc

InvalidMethodException

public class InvalidMethodException extends RuntimeException
Instances of this class are thrown by BCEL's class file verifier "JustIce" when the verification of a method is requested that does not exist.
version
$Id: InvalidMethodException.java,v 1.1.1.1 2001/10/29 20:00:33 jvanzyl Exp $
author
Enver Haase

Fields Summary
Constructors Summary
private InvalidMethodException()
Must not be no-args requested so there's always some error message.

public InvalidMethodException(String message)
Constructs an InvalidMethodException with the specified detail message.

		super(message);
	
Methods Summary