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

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.

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  Class Hierarchy  This Package  Previous  Next  Index