Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.lang.Throwable

Availability: JDK 1.0

public class Throwable extends Object implements Serializable {
   // Public Constructors
      public Throwable();
      public Throwable(String message);
   // Public Instance Methods
      public native Throwable fillInStackTrace();
1.1  public String getLocalizedMessage();
      public String getMessage();
      public void printStackTrace();
      public void printStackTrace(PrintStream s);
1.1  public void printStackTrace(PrintWriter s);
      public String toString();  // Overrides Object.toString()
}
Extended By:
Error, Exception.
Passed To:
ExceptionInInitializerError.ExceptionInInitializerError(), InvocationTargetException.InvocationTargetException(), RemoteException.RemoteException(), Thread.stop(), ThreadGroup.uncaughtException().
Returned By:
ExceptionInInitializerError.getException(), InvocationTargetException.getTargetException(), Throwable.fillInStackTrace().
Type Of:
RemoteException.detail.

Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan. Copyright © 1997 by O'Reilly & Associates.