Packages This Package Prev Next Index
public class java.lang.InstantiationError extends java.lang.IncompatibleClassChangeError (§1.48) { public InstantiationError(); §1.49.1 public InstantiationError(String s); §1.49.2 }The Java runtime throws an instance of this class if the application tries to use the Java
new
construct to instantiate an abstract class or an interface.
Normally, this error is caught by the compiler; this error can only occur at runtime if the definition of a class has incompatibably changed.
public InstantiationError()
InstantiationError
with no detail message.
public InstantiationError(String s)
InstantiationError
with the specified detail message.
s
-
Packages This Package Prev Next IndexJava API Document (HTML generated by dkramer on April 22, 1996)