<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<!--NewPage-->
<html>
<head>
<!-- Generated by javadoc on Wed Jul 28 01:21:15 GMT 1999 -->
<title>
  Class java.lang.Error
</title>
</head>
<body>
<a name="_top_"></a>
<pre>
<a href="packages.html">All Packages</a>  <a href="tree.html">Class Hierarchy</a>  <a href="Package-java.lang.html">This Package</a>  <a href="java.lang.ClassFormatError.html#_top_">Previous</a>  <a href="java.lang.ExceptionInInitializerError.html#_top_">Next</a>  <a href="AllNames.html">Index</a></pre>
<hr>
<h1>
  Class java.lang.Error
</h1>
<pre>
<a href="java.lang.Object.html#_top_">java.lang.Object</a>
   |
   +----<a href="java.lang.Throwable.html#_top_">java.lang.Throwable</a>
           |
           +----java.lang.Error
</pre>
<hr>
<dl>
  <dt> public class <b>Error</b>
  <dt> extends <a href="java.lang.Throwable.html#_top_">Throwable</a>
</dl>
An <code>Error</code> is a subclass of <code>Throwable</code> 
 that indicates serious problems that a reasonable application 
 should not try to catch. Most such errors are abnormal conditions. 
 The <code>ThreadDeath</code> error, though a "normal" condition,
 is also a subclass of <code>Error</code> because most applications
 should not try to catch it. 
 <p>
 A method is not required to declare in its <code>throws</code> 
 clause any subclasses of <code>Error</code> that might be thrown 
 during the execution of the method but not caught, since these 
 errors are abnormal conditions that should never occur.
<p>
<dl>
    <dt> <b>See Also:</b>
    <dd> <a href="java.lang.ThreadDeath.html#_top_">ThreadDeath</a>
</dl>
<hr>
<a name="index"></a>
<h2>
  <img src="images/constructor-index.gif" width=275 height=38 alt="Constructor Index">
</h2>
<dl>
  <dt> <img src="images/yellow-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#Error()"><b>Error</b></a>()
  <dd>  Constructs an <code>Error</code> with no specified detail message.
  <dt> <img src="images/yellow-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#Error(java.lang.String)"><b>Error</b></a>(String)
  <dd>  Constructs an Error with the specified detail message.
</dl>
<a name="constructors"></a>
<h2>
  <img src="images/constructors.gif" width=231 height=38 alt="Constructors">
</h2>
<a name="Error"></a>
<a name="Error()"><img src="images/yellow-ball.gif" width=12 height=12 alt=" o "></a>
<b>Error</b>
<pre>
 public Error()
</pre>
<dl>
  <dd> Constructs an <code>Error</code> with no specified detail message.
<p>
</dl>
<a name="Error(java.lang.String)"><img src="images/yellow-ball.gif" width=12 height=12 alt=" o "></a>
<b>Error</b>
<pre>
 public Error(<a href="java.lang.String.html#_top_">String</a> s)
</pre>
<dl>
  <dd> Constructs an Error with the specified detail message.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> s - the detail message.
  </dl></dd>
</dl>
<hr>
<pre>
<a href="packages.html">All Packages</a>  <a href="tree.html">Class Hierarchy</a>  <a href="Package-java.lang.html">This Package</a>  <a href="java.lang.ClassFormatError.html#_top_">Previous</a>  <a href="java.lang.ExceptionInInitializerError.html#_top_">Next</a>  <a href="AllNames.html">Index</a></pre>
</body>
</html>
