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

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.
Version:
1.5, 08/16/95
Author:
Frank Yellin

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    This Package    Previous    Next