01: package java.lang;
02:
03: import java.io.PrintStream;
04: import java.io.PrintWriter;
05: import java.io.Serializable;
06:
07: public class Throwable implements Serializable {
08: public Throwable() {
09: }
10:
11: public Throwable(String message) {
12: }
13:
14: public Throwable(String message, Throwable cause) {
15: }
16:
17: public Throwable(Throwable cause) {
18: }
19:
20: public String getMessage() {
21: }
22:
23: public String getLocalizedMessage() {
24: }
25:
26: public Throwable getCause() {
27: }
28:
29: public Throwable initCause(Throwable cause) {
30: }
31:
32: public String toString() {
33: }
34:
35: public void printStackTrace() {
36: }
37:
38: public void printStackTrace(PrintStream s) {
39: }
40:
41: public void printStackTrace(PrintWriter pw) {
42: }
43:
44: private static class StaticData {
45:
46: static {
47: }
48: }
49:
50: private String stackTraceString() {
51: }
52:
53: private static void stackTraceStringBuffer(StringBuffer sb,
54: String name, StackTraceElement[] stack, int equal) {
55: }
56:
57: public Throwable fillInStackTrace() {
58: }
59:
60: public StackTraceElement[] getStackTrace() {
61: }
62:
63: public void setStackTrace(StackTraceElement[] stackTrace) {
64: }
65: }
|