FileDocCategorySizeDatePackage
Exception.javaAPI DocJ2ME CLDC 1.1854Wed Feb 05 15:56:00 GMT 2003java.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.
author
Frank Yellin
version
12/17/01 (CLDC 1.1)
see
java.lang.Error
since
JDK1.0, CLDC 1.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