Java in a Nutshell

Previous Chapter 25
The java.lang Package
Next
 

25.30 java.lang.InstantiationError (JDK 1.0)

Signals an attempt to instantiate an interface or abstract class.


public class InstantiationError extends IncompatibleClassChangeError {

    // Public Constructors

            public InstantiationError();

            public InstantiationError(String s);

}

Hierarchy:

Object->Throwable(Serializable)->Error->LinkageError->IncompatibleClassChangeError->InstantiationError


Previous Home Next
java.lang.IndexOutOfBoundsException (JDK 1.0) Book Index java.lang.InstantiationException (JDK 1.0)

Java in a Nutshell Java Language Reference Java AWT Java Fundamental Classes Exploring Java