Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)

Class java.lang.Exception

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception

public class Exception
extends Throwable
super class of:
AWTException, AclNotFoundException, AlreadyBoundException, ClassNotFoundException, CloneNotSupportedException, DataFormatException, DigestException, IOException, IllegalAccessException, InstantiationException, InterruptedException, IntrospectionException, InvocationTargetException, KeyException, LastOwnerException, NoSuchAlgorithmException, NoSuchFieldException, NoSuchMethodException, NoSuchProviderException, NotBoundException, NotOwnerException, ParseException, PropertyVetoException, RuntimeException, SQLException, ServerNotActiveException, SignatureException, TooManyListenersException, UnsupportedFlavorException

The class Exception and its subclasses are a form of Throwable that indicates conditions that a reasonable application might want to catch.

Since:
JDK1.0
See Also:
Error

Constructor Index

Exception()
Constructs an Exception with no specified detail message.
Exception(String)
Constructs an Exception with the specified detail message.

Constructors

Exception
 public Exception()
Constructs an Exception with no specified detail message.

Exception
 public Exception(String s)
Constructs an Exception with the specified detail message.

Parameters:
s - the detail message.

Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)