Class java.lang.Exception
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.lang.Exception

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

public class Exception
extends Throwable
Exception are a form of Throwable that normal programs may wish to try and catch.

Constructor Index

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

Constructors

 o Exception
  public Exception()
Constructs an Exception with no specified detail message. A detail message is a String that describes this particular exception.
 o Exception
  public Exception(String s)
Constructs a Exception with the specified detail message. A detail message is a String that describes this particular exception.
Parameters:
s - the detail message

All Packages  Class Hierarchy  This Package  Previous  Next  Index