Packages  This Package  Prev  Next  Index  

§1.46 Class Error

public class java.lang.Error
    extends java.lang.Throwable (§1.21)
{
    public Error();	§1.46.1
    public Error(String s);	§1.46.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 only exception is the ThreadDeath error (§1.57), which though a “normal” condition, should not be most applications..

A method is not required to declare in its throws clause any subclasses of Error that might be thrown during the execution of the method but not caught, since these errors are abnormal conditions that should never occur.


Constructors

Error
public Error()
Constructs an Error with no specified detail message.

Error
public Error(String s)
Constructs an Error with the specified detail message.

Parameters:
s - the detail message


Packages  This Package  Prev  Next  Index
Java API Document (HTML generated by dkramer on April 22, 1996)
Copyright © 1996 Sun Microsystems, Inc. All rights reserved
Please send any comments or corrections to doug.kramer@sun.com