class |
ArithmeticException |
Thrown when the an invalid arithmetic operation is attempted.
|
class |
ArrayIndexOutOfBoundsException |
Thrown when the an array is indexed with a value less than zero, or greater
than or equal to the size of the array.
|
class |
ArrayStoreException |
Thrown when a program attempts to store an element of an incompatible type in
an array.
|
class |
Boolean |
The wrapper for the primitive type boolean .
|
class |
Byte |
The wrapper for the primitive type byte .
|
class |
Character |
The wrapper for the primitive type char .
|
class |
Class<T> |
The in-memory representation of a Java class.
|
class |
ClassCastException |
Thrown when a program attempts to cast a an object to a type with which it is
not compatible.
|
class |
ClassNotFoundException |
Thrown when an application tries to load in a class through its
string name using:
The forName method in class Class .
|
class |
Double |
The wrapper for the primitive type double .
|
class |
Enum<E extends Enum<E>> |
The superclass of all enumerated types.
|
class |
Error |
Error is the superclass of all classes that represent unrecoverable
errors.
|
class |
Exception |
Exception is the superclass of all classes that represent recoverable
exceptions.
|
class |
Float |
The wrapper for the primitive type float .
|
class |
IllegalArgumentException |
Thrown when a method is invoked with an argument which it can not reasonably
deal with.
|
class |
IncompatibleClassChangeError |
IncompatibleClassChangeError is the superclass of all classes which
represent errors that occur when inconsistent class files are loaded into
the same running image.
|
class |
IndexOutOfBoundsException |
Thrown when a program attempts to access a value in an indexable collection
using a value which is outside of the range of valid indices.
|
class |
Integer |
The wrapper for the primitive type int .
|
class |
LinkageError |
LinkageError is the superclass of all error classes that occur when
loading and linking class files.
|
class |
Long |
The wrapper for the primitive type long .
|
class |
NegativeArraySizeException |
Thrown when an attempt is made to create an array with a size of less than
zero.
|
class |
NoSuchFieldError |
Thrown when the VM notices that a program tries to reference,
on a class or object, a field that does not exist.
|
class |
NoSuchFieldException |
Thrown when the VM notices that a program tries to reference,
on a class or object, a field that does not exist.
|
class |
NoSuchMethodError |
Thrown when the VM notices that a program tries to reference,
on a class or object, a method that does not exist.
|
class |
NoSuchMethodException |
Thrown when the VM notices that a program tries to reference,
on a class or object, a method that does not exist.
|
class |
NullPointerException |
Thrown when a program tries to access a field or method of an object or an
element of an array when there is no instance or array to use, that is if the
object or array points to null .
|
class |
Number |
|
class |
NumberFormatException |
Thrown when an invalid value is passed to a string-to-number conversion
method.
|
class |
ReflectiveOperationException |
Superclass of exceptions related to reflection.
|
class |
RuntimeException |
RuntimeException is the superclass of all classes that represent
exceptional conditions which occur as a result of executing an application in
the VM.
|
class |
Short |
The wrapper for the primitive type short .
|
class |
String |
An immutable sequence of characters/code units (char s).
|
class |
Throwable |
The superclass of all classes which can be thrown by the VM.
|