java.lang.Objectjava.lang.Throwable
java.lang.Error
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AssertionError, CoderMalfunctionError, ConfigurationError, InternalError, ServiceConfigurationError, FactoryConfigurationError, GenericSignatureFormatError, NoSuchFieldError, InstantiationError, ClassFormatError, UnsupportedClassVersionError, ExceptionInInitializerError, ZipError, ConfigurationError, NoSuchMethodError, VerifyError, ThreadDeath, TransformerFactoryConfigurationError, NoClassDefFoundError, StateInvariantError, OutOfMemoryError, ConfigurationError, AWTError, IllegalAccessError, UnsatisfiedLinkError, LinkageError, IncompatibleClassChangeError, AbstractMethodError, FactoryConfigurationError, AnnotationFormatError, ConfigurationError, StackOverflowError, ClassCircularityError, IOError, UnknownError, ConfigurationError, VirtualMachineError
Error is a subclass of Throwable
that indicates serious problems that a reasonable application
should not try to catch. Most such errors are abnormal conditions.
The ThreadDeath error, though a "normal" condition,
is also a subclass of Error because most applications
should not try to catch it.
A method is not required to declare in its throws
clause any subclasses of Error that might be thrown
during the execution of the method but not caught, since these
errors are abnormal conditions that should never occur.
Frank - YellinJDK1.0 - | Field Summary | ||
|---|---|---|
| static final long | serialVersionUID | |
| Constructor: |
|---|
null as its detail message.
The cause is not initialized, and may subsequently be initialized by a
call to #initCause . |
|
|
Note that the detail message associated with
|
| Methods from java.lang.Throwable: |
|---|
| fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Methods from java.lang.Object: |
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |