Uses of Class
java.lang.Exception

Packages that use Exception
java.awt   
java.awt.event   
java.beans   
java.io   
java.lang   
java.util   
 

Uses of Exception in java.awt
 

Subclasses of Exception in java.awt
 interface AWTException
          Signals that an Absract Window Toolkit exception has occurred.
 interface IllegalComponentStateException
          Signals that an AWT component is not in an appropriate state for the requested operation.
 

Uses of Exception in java.awt.event
 

Fields in java.awt.event declared as Exception
private  Exception InvocationEvent.exception
          The (potentially null) Exception thrown during execution of the Runnable.run() method.
 

Methods in java.awt.event that return Exception
 Exception InvocationEvent.getException()
          Returns any Exception caught while executing the Runnable's run() method.
 

Uses of Exception in java.beans
 

Subclasses of Exception in java.beans
 interface IntrospectionException
          Thrown when an exception happens during Introspection.
 interface PropertyVetoException
          A PropertyVetoException is thrown when a proposed change to a property represents an unacceptable value.
 

Uses of Exception in java.io
 

Subclasses of Exception in java.io
 interface CharConversionException
          base class for character conversion exceptions
 interface EOFException
          Signals that an end of file or end of stream has been reached unexpectedly during input.
 interface FileNotFoundException
          Signals that an attempt to open the file denoted by a specified pathname has failed.
 interface InterruptedIOException
          Signals that an I/O operation has been interrupted.
 interface InvalidClassException
          Thrown when the Serialization runtime detects one of the following problems with a Class.
 interface InvalidObjectException
          Indicates that one or more deserialized objects failed validation tests.
 interface IOException
          Signals that an I/O exception of some sort has occurred.
 interface NotActiveException
          Thrown when serialization or deserialization is not active.
 interface NotSerializableException
          Thrown when an instance is required to have a Serializable interface.
 interface ObjectStreamException
          Superclass of all exceptions specific to Object Stream classes.
 interface OptionalDataException
          Unexpected data appeared in an ObjectInputStream trying to read an Object.
 interface StreamCorruptedException
          Thrown when control information that was read from an object stream violates internal consistency checks.
 interface SyncFailedException
           
 interface UnsupportedEncodingException
          The Character Encoding is not supported
 interface UTFDataFormatException
          Signals that a malformed UTF-8 string has been read in a data input stream or by any class that implements the data input interface.
 interface WriteAbortedException
           
 

Fields in java.io declared as Exception
 Exception WriteAbortedException.detail
          Exception that was caught while writing the ObjectStream.
 

Constructors in java.io with parameters of type Exception
WriteAbortedException.WriteAbortedException(String s, Exception ex)
          Thrown during a read operation when one of the ObjectStreamExceptions was thrown during a write operation.
 

Uses of Exception in java.lang
 

Subclasses of Exception in java.lang
 interface ArithmeticException
          Thrown when an exceptional arithmetic condition has occurred.
 interface ArrayIndexOutOfBoundsException
          Thrown to indicate that an array has been accessed with an illegal index.
 interface ArrayStoreException
          Thrown to indicate that an attempt has been made to store the wrong type of object into an array of objects.
 interface ClassCastException
          Thrown to indicate that the code has attempted to cast an object to a subclass of which it is not an instance.
 interface ClassNotFoundException
          Thrown when an application tries to load in a class through its string name using: The forName method in class Class.
 interface CloneNotSupportedException
          Thrown to indicate that the clone method in class Object has been called to clone an object, but that the object's class does not implement the Cloneable interface.
 interface IllegalAccessException
          Thrown when an application tries to load in a class through its string name using: The forName method in class Class.
 interface IllegalArgumentException
          Thrown to indicate that a method has been passed an illegal or inappropriate argument.
 interface IllegalMonitorStateException
          Thrown to indicate that a thread has attempted to wait on an object's monitor or to notify other threads waiting on an object's monitor without owning the specified monitor.
 interface IllegalStateException
          Signals that a method has been invoked at an illegal or inappropriate time.
 interface IllegalThreadStateException
          Thrown to indicate that a thread is not in an appropriate state for the requested operation.
 interface IndexOutOfBoundsException
          Thrown to indicate that an index of some sort (such as to an array, to a string, or to a vector) is out of range.
 interface InstantiationException
          Thrown when an application tries to create an instance of a class using the newInstance method in class Class, but the specified class object cannot be instantiated because it is an interface or is an abstract class.
 interface InterruptedException
          Thrown when a thread is waiting, sleeping, or otherwise paused for a long time and another thread interrupts it using the interrupt method in class Thread.
 interface NegativeArraySizeException
          Thrown if an application tries to create an array with negative size.
 interface NoSuchFieldException
          Signals that the class doesn't have a field of a specified name.
 interface NoSuchMethodException
          Thrown when a particular method cannot be found.
 interface NullPointerException
          Thrown when an application attempts to use null in a case where an object is required.
 interface NumberFormatException
          Thrown to indicate that the application has attempted to convert a string to one of the numeric types, but that the string does not have the appropriate format.
 interface RuntimeException
          RuntimeException is the superclass of those exceptions that can be thrown during the normal operation of the Java Virtual Machine.
 interface SecurityException
          Thrown by the security manager to indicate a security violation.
 interface StringIndexOutOfBoundsException
          Thrown by the charAt method in class String and by other String methods to indicate that an index is either negative or greater than or equal to the size of the string.
 interface UnsupportedOperationException
          Thrown to indicate that the requested operation is not supported.
 

Uses of Exception in java.util
 

Subclasses of Exception in java.util
 interface ConcurrentModificationException
          This exception may be thrown by methods that have detected concurrent modification of a backing object when such modification is not permissible.
 interface EmptyStackException
          Thrown by methods in the Stack class to indicate that the stack is empty.
 interface MissingResourceException
          Signals that a resource is missing.
 interface NoSuchElementException
          Thrown by the nextElement method of an Enumeration to indicate that there are no more elements in the enumeration.
 interface TooManyListenersException
           The TooManyListenersException Exception is used as part of the Java Event model to annotate and implement a unicast special case of a multicast Event Source.