Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.lang.Exception

Uses of Exception in java.lang
 

Subclasses of Exception in java.lang
 class ArithmeticException
          Thrown when a math error has occured, such as trying to divide an integer by zero.
 class ArrayIndexOutOfBoundsException
          Thrown when attempting to access a position outside the valid range of an array.
 class ArrayStoreException
          Thrown when trying to store an object of the wrong runtime type in an array.
 class ClassCastException
          Thrown when an attempt is made to cast an object which is not of the appropriate runtime type.
 class ClassNotFoundException
          Thrown when a class is requested by reflection, but the class definition cannot be found.
 class CloneNotSupportedException
          Thrown to indicate an object should not or could not be cloned.
 class EnumConstantNotPresentException
          An exception of this type is thrown when a symbolic reference is made to an enum constant which does not exist.
 class IllegalAccessException
          Thrown whenever a reflective method tries to do something that the compiler would not allow.
 class IllegalArgumentException
          Thrown when a method is passed an illegal or inappropriate argument.
 class IllegalMonitorStateException
          Thrown when a thread attempts to wait or notify on a monitor that it does not own (ie.
 class IllegalStateException
          Thrown when a method is invoked at an illegal or inappropriate time.
 class IllegalThreadStateException
          Thrown When trying to manipulate a Thread which is in an inappropriate state.
 class IndexOutOfBoundsException
          This exception can be thrown to indicate an attempt to access an index which is out of bounds on objects like String, Array, or Vector.
 class InstantiationException
          Thrown when an attempt is made to use reflection to build a non-instantiable class (an interface or abstract class).
 class InterruptedException
          Thrown when a thread interrupts another thread which was previously sleeping, waiting, or paused in some other way.
 class NegativeArraySizeException
          Thrown when an attempt is made to create an array with a negative size.
 class NoSuchFieldException
          Thrown to indicate the class does not have the specified field.
 class NoSuchMethodException
          Thrown to indicate the class does not have the specified method.
 class NullPointerException
          Thrown when attempting to use null where an object is required.
 class NumberFormatException
          Can be thrown when attempting to convert a String to one of the numeric types, but the operation fails because the string has the wrong format.
 class RuntimeException
          All exceptions which are subclasses of RuntimeException can be thrown at any time during the execution of a Java virtual machine.
 class SecurityException
          The security manager will throw this exception to indicate a security violation.
 class StringIndexOutOfBoundsException
          This exception can be thrown to indicate an attempt to access an index which is out of bounds of a String.
 class TypeNotPresentException
           Thrown when a type is accessed using a String-based representation, but no definition of the supplied type is found.
 class UnsupportedOperationException
          This exception is thrown by an object when an operation is requested of it that it does not support.