InstantiationErrorNameInstantiationErrorSynopsis
DescriptionAn InstantiationError is thrown in response to an attempt to instantiate an abstract class or interface. Usually this error is caught by the compiler; this error 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.InstantiationError extends java.lang.IncompatibleClassChangeError { // Constructors public InstantiationError(); public InstantiationError(String s); } ConstructorsInstantiationErrorpublic InstantiationError()
public InstantiationError(String s)
Inherited Methods
See AlsoError, IncompatibleClassChangeError, Throwable |
|