FileDocCategorySizeDatePackage
Exception.javaAPI DocphoneME MR2 API (J2ME)1734Wed May 02 17:59:54 BST 2007java.lang

Exception

public class Exception extends Throwable
The class Exception and its subclasses are a form of Throwable that indicates conditions that a reasonable application might want to catch.
version
1.26, 12/04/99 (CLDC 1.0, Spring 2000)
see
java.lang.Error
since
JDK1.0

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

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

param
s the detail message.

    super(s);
    
Methods Summary