Class java.lang.Error
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.lang.Error

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Error

public class Error
extends Throwable
Error is a subtype of Throwable for abnormal events that should not occur. Do not try to catch Error's unless you really know what you're doing.

Constructor Index

 o Error()
Constructs an Error with no specified detail message.
 o Error(String)
Constructs an Error with the specified detail message.

Constructors

 o Error
  public Error()
Constructs an Error with no specified detail message. A detail message is a String that describes this particular error.
 o Error
  public Error(String s)
Constructs an Error with the specified detail message. A detail message is a String that describes this particular error
Parameters:
s - the detail message

All Packages  Class Hierarchy  This Package  Previous  Next  Index