Packages This Package Prev Next Index
public class java.lang.Error extends java.lang.Throwable (I-§1.21) { // Constructors public Error(); §1.48.1 public Error(String s); §1.48.2 }An Error is a subclass of Throwable that indicates serious problems that a reasonable application should not try to catch. Most such errors are abnormal conditions. The Thread-Death error (I-§1.59), though a "normal" condition, is also a subclass of Error since most applications should not try to catch it.
public Error()
public Error(String s)
s
-
the detail message
Packages This Package Prev Next IndexJava API Document (HTML generated by dkramer on April 22, 1996)