java.lang
Class InstantiationError
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Error
|
+--java.lang.LinkageError
|
+--java.lang.IncompatibleClassChangeError
|
+--java.lang.InstantiationError
- All Implemented Interfaces:
- Serializable
- public class InstantiationError
- extends IncompatibleClassChangeError
Untamed: 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 run time if the definition of a class has
incompatibly changed.
- Since:
- JDK1.0
- Version:
- 1.10, 12/03/01
- Author:
- unascribed
- See Also:
- Serialized Form
Fields inherited from class java.lang.Throwable |
|
Constructor Summary |
InstantiationError()
Enabled: Constructs an InstantiationError with no detail message. |
InstantiationError(String s)
Enabled: Constructs an InstantiationError with the specified
detail message. |
Methods inherited from class java.lang.Throwable |
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap |
InstantiationError
public InstantiationError()
- Enabled: Constructs an
InstantiationError
with no detail message.
InstantiationError
public InstantiationError(String s)
- Enabled: Constructs an
InstantiationError
with the specified
detail message.
- Parameters:
s
- the detail message.
comments?