NoSuchMethodErrorNameNoSuchMethodErrorSynopsis
DescriptionA NoSuchMethodError is thrown in response to an attempt to reference a method that is not defined in the current definition of a class. Usually this error is caught by the compiler; it can occur at run-time if the definition of a class is changed after the class that references it was last compiled. Class Summary
public class java.lang.NoSuchMethodError extends java.lang.IncompatibleClassChangeError { // Constructors public NoSuchMethodError(); public NoSuchMethodError(String s); } ConstructorsNoSuchMethodErrorpublic NoSuchMethodError()
public NoSuchMethodError(String s)
Inherited Methods
See AlsoError, IncompatibleClassChangeError, Throwable |
|