Java Reference
In-Depth Information
convert a string to one of the numeric types, but
the string did not have the appropriate format.
RuntimeException The RuntimeException is the superclass of
those exceptions that can be thrown during the
normal operation of the Java Virtual Machine.
SecurityException The SecurityException is thrown if the
s ecurity manager discovers a security violation.
StringIndexOutOfBoundsException The StringIndexOutOfBoundsException is
thrown by the charAt method in the class String
and by other String methods to indicate that an
index is either negative, greater than, or equal to
the size of the string.
Errors
Error The Error class is a subclass of the Throwable class indicating
s erious problems that an application should not try to catch.
NoClassDefFoundError The NoClassDefFoundError occurs, if the Java Virtual
Machine tries to load in the definition of a class and no definition
of the class could be found. This error is part of CLDC since
version 1.1.
OutOfMemoryError The OutOfMemoryError is thrown in order to indicate that the
Java Virtual Machine cannot allocate an object, because it is out
of memory, and no more memory could be made available by the
garbage collector.
VirtualMachineError The VirtualMachineError is thrown to indicate that the Java
Virtual Machine is broken or has run out of resources necessary
for it to continue operating.
Search WWH ::




Custom Search