Class java.lang.InstantiationError
All Packages    This Package    Previous    Next

Class java.lang.InstantiationError

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Error
                   |
                   +----java.lang.LinkageError
                           |
                           +----java.lang.IncompatibleClassChangeError
                                   |
                                   +----java.lang.InstantiationError

public class InstantiationError
extends IncompatibleClassChangeError
Signals that the interpreter has tried to instantiate an abstract class or an interface.
Version:
1.2, 08/23/95

Constructor Index

 o InstantiationError()
Constructs an InstantiationError with no detail message.
 o InstantiationError(String)
Constructs an InstantiationError with the specified detail message.

Constructors

 o InstantiationError
  public InstantiationError()
Constructs an InstantiationError with no detail message. A detail message is a String that describes this particular exception.

 o InstantiationError

  public InstantiationError(String s)
Constructs an InstantiationError with the specified detail message. A detail message is a String that describes this particular exception.
Parameters:
s - the String that contains the detail message


All Packages    This Package    Previous    Next