java.lang |
|
Java Source File Name | Type | Comment |
AbstractMethodError.java | Class | This error is thrown when the VM notices that a an attempt is being made to
invoke an abstract method. |
AbstractStringBuilder.java | Class |
A modifiable
CharSequence sequence of characters for use in creating
and modifying Strings. |
Appendable.java | Interface | Appendable is an object used to append character or character sequence. |
ArithmeticException.java | Class | This runtime exception is thrown when the an invalid arithmetic operation is
attempted. |
ArrayIndexOutOfBoundsException.java | Class | This runtime exception is thrown when the an array is indexed with a value
less than zero, or greater than or equal to the size of the array. |
ArrayStoreException.java | Class | This runtime exception is thrown when a program attempts to store into an
array an element of a a type which the array can not hold.. |
AssertionError.java | Class |
Indicates that an assertion has failed. |
Character.java | Class |
Character is the wrapper for the primitive type char . |
CharSequence.java | Interface | The CharSequence interface represents an ordered set of characters and the
functions to probe them. |
ClassCastException.java | Class | This runtime exception is thrown when a program attempts to cast a an object
to a type which it is not compatible with. |
ClassCircularityError.java | Class | This error is thrown when the VM notices that an attempt is made to load a
class which would directly or indirectly inherit from one of its subclasses. |
ClassFormatError.java | Class | This error is thrown by the class loader when it discovers that a class that
it is loading does not have the correct shape. |
ClassNotFoundException.java | Class | This exception is thrown when a classloader is unable to find a class. |
Cloneable.java | Interface | This (empty) interface should be implemented by all classes which wish to
support cloning. |
CloneNotSupportedException.java | Class | This exception is thrown when a program attempts to clone an object which
does not support the Cloneable interface. |
Comparable.java | Interface | This interface should be implemented by all classes which wish to define a
natural ordering of their instances. |
Enum.java | Class | The superclass of all enumerated types. |
Error.java | Class | This class is the superclass of all classes which represent unrecoverable
errors. |
Exception.java | Class | This class is the superclass of all classes which represent recoverable
exceptions. |
ExceptionInInitializerError.java | Class | This error is thrown when an exception occurs during class initialization. |
IllegalAccessError.java | Class | This error is thrown when the VM notices that a an attempt is being made to
access a field which is not accessable from where it is referenced. |
IllegalAccessException.java | Class | This exception is thrown when a program attempts to access a field or method
which is not accessible from the location where the reference is made. |
IllegalArgumentException.java | Class | This runtime exception is thrown when a method is invoked with an argument
which it can not reasonably deal with. |
IllegalMonitorStateException.java | Class | This runtime exception is thrown when a monitor operation is attempted when
the monitor is not in the correct state, for example when a thread attempts
to exit a monitor which it did not own. |
IllegalStateException.java | Class | This runtime exception is thrown when an action is attempted at a time when
the virtual machine is not in the correct state. |
IllegalThreadStateException.java | Class | This runtime exception is thrown when an operation is attempted which is not
possible given the state that the executing thread is in. |
IncompatibleClassChangeError.java | Class | This class is the superclass of all classes which represent errors which
occur when inconsistant class files are loaded into the same running image. |
IndexOutOfBoundsException.java | Class | This runtime exception is thrown when a program attempts to access a value in
an indexable collection using a value which is outside the possible range of
indices. |
InstantiationError.java | Class | This error is thrown when the VM notices that a an attempt is being made to
create a new instance of a class which has no visible constructors from the
location where new is invoked. |
InstantiationException.java | Class | This exception is thrown when a program attempts to access a constructor
which is not accessible from the location where the reference is made. |
InternalError.java | Class | This error is thrown when the VM notices that it has gotten into a state
which it does not understand. |
InterruptedException.java | Class | This exception is thrown when a waiting thread is activated before the
condition it was waiting on has been satisfied. |
Iterable.java | Interface | |
LinkageError.java | Class | This class is the superclass of all classes which represent errors that occur
when loading and linking class files. |
NegativeArraySizeException.java | Class | This runtime exception is thrown when an attempt is made to create an array
whose size would be less than zero. |
NoClassDefFoundError.java | Class | This error is thrown when the VM is unable to locate a class which it has
been asked to load. |
NoSuchFieldError.java | Class | This error is thrown when the VM notices that a an attempt is being made to
reference a field of a class which does not exist in that class. |
NoSuchFieldException.java | Class | |
NoSuchMethodError.java | Class | This error is thrown when the VM notices that a an attempt is being made to
reference a method of a class which does not exist in that class. |
NoSuchMethodException.java | Class | This exception is thrown when a program attempts to access a method which
does not exist in a class. |
NullPointerException.java | Class | This runtime exception is thrown when an attempt is made to access a field or
method of an instance or an element of an array when there is no instance or
array to use (i.e. |
NumberFormatException.java | Class | This runtime exception is thrown when a "string to number" conversion routine
is passed an invalid value. |
OutOfMemoryError.java | Class | This error is thrown when a request is made for more memory either as a
result of the running program, or because of the internal behavior of the
virtual machine which can not be satisfied using the available platform
resources. |
Readable.java | Interface | Readable marks that the implementing class provides character sequence. |
Runnable.java | Interface | The runnable interface must be implemented by all classes which want to be
run as threads. |
RuntimeException.java | Class | This class is the superclass of all classes which represent exceptional
conditions which occur as a result of the running of the virtual machine. |
SecurityException.java | Class | This runtime exception is thrown when a security manager check fails. |
StackOverflowError.java | Class | This error is thrown when the depth of the callstack of the running program
excedes some platform or virtual machine specific limit. |
StackTraceElement.java | Class | An implementation of this class is provided, but the documented constructor
can be used by the VM specific implementation to create instances. |
StrictMath.java | Class | Class StrictMath provides various numeric operations using the standards set
by the known "Freely Distributable Math Library" (fdlibm). |
StringBuffer.java | Class | StringBuffer is a variable size contiguous indexable array of characters. |
StringBuilder.java | Class |
A modifiable
CharSequence sequence of characters for use in creating
and modifying Strings. |
StringIndexOutOfBoundsException.java | Class | This runtime exception is thrown when the a String is indexed with a value
less than zero, or greater than or equal to the size of the array. |
Thread.java | Class | |
ThreadDeath.java | Class | ThreadDeath is thrown when a thread stops executing. |
ThreadGroup.java | Class | |
Throwable.java | Class | The Throwable class is the superclass of all errors and
exceptions in the Java language. |
TypeNotPresentException.java | Class |
Indicates that a class, interface, enum or annotation type cannot be found. |
UnknownError.java | Class | This error is thrown when the virtual machine must throw an error which does
not match any known exceptional condition. |
UnsatisfiedLinkError.java | Class | This error is thrown when an attempt is made to invoke a native for which an
implementation could not be found. |
UnsupportedClassVersionError.java | Class | This error is thrown when an attempt is made to load a class with a format
version that is not supported by the VM. |
UnsupportedOperationException.java | Class | This runtime exception is thrown when an unsupported operation is attempted. |
VerifyError.java | Class | This error is thrown when the VM notices that an attempt is made to load a
class which does not pass the class verification phase. |
VirtualMachineError.java | Class | This class is the superclass of all classes which represent errors that occur
during the operation of the virtual machine. |
Void.java | Class | |