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

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.
Version:
1.0, 10 Aug 1995
Author:
Frank Yellin

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    This Package    Previous    Next