Packages  This Package  Prev  Next  Index  

§1.51 Class InstantiationError

public  class  java.lang.InstantiationError
    extends  java.lang.IncompatibleClassChangeError  (I-§1.50)
{
        // Constructors
    public InstantiationError();	§1.51.1
    public InstantiationError(String  s);	§1.51.2
}
Thrown when an 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.


Constructors

InstantiationError

public InstantiationError()
Constructs an InstantiationError with no detail message.

InstantiationError

public InstantiationError(String s)
Constructs an InstantiationError with the specified detail message.
Parameters:
s - the detail message

Packages  This Package  Prev  Next  Index
Java API Document (HTML generated by dkramer on April 22, 1996)
Copyright © 1996 Sun Microsystems, Inc. All rights reserved
Please send any comments or corrections to doug.kramer@sun.com