/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This source file is part of SableVM classlib-stubs. * * * * See the file "LICENSE" for the copyright information and for * * the terms and conditions for copying, distribution and * * modification of this source file. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ package java.lang; import java.io.PrintStream; import java.io.PrintWriter; import java.io.Serializable; public class Throwable extends Object implements Serializable { public Throwable() { } public Throwable(String message) { } public Throwable(String message, Throwable cause) { } public Throwable(Throwable cause) { } native public String getMessage(); native public String getLocalizedMessage(); native public Throwable getCause(); native public Throwable initCause(Throwable cause); native public String toString(); native public void printStackTrace(); native public void printStackTrace(PrintStream s); native public void printStackTrace(PrintWriter s); native public Throwable fillInStackTrace(); native public StackTraceElement[] getStackTrace(); native public void setStackTrace(StackTraceElement[] stackTrace); }