-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathExceptions.java
209 lines (185 loc) · 5.26 KB
/
Exceptions.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
public class Exceptions {
public static void main(String[] args) {
simple();
multi();
try {
tunnel();
} catch (Throwable e) {
System.out.println("catch");
} finally {
System.out.println("second finally");
}
nested();
throwInFinally();
returnFromCatch();
returnFromFinally();
try {
rethrow();
} catch (Error e) {
System.out.println("second catch");
}
crazy();
System.out.println(returnWithSideEffects());
System.out.println("end");
nestedLandingPad();
}
public static void simple() {
System.out.println("begin simple");
try {
throw new Error();
} catch (Throwable e) {
System.out.println("catch");
} finally {
System.out.println("finally");
}
}
public static void multi() {
System.out.println("begin multi");
try {
throw new Exception();
} catch (AssertionError e) {
System.out.println("catch assertion error");
} catch (Error | Exception e) {
System.out.println("catch error or exception");
} catch (Throwable e) {
System.out.println("catch throwable");
} finally {
System.out.println("finally");
}
}
public static void tunnel() {
System.out.println("begin tunnel");
try {
Error err = new Error();
Exception e = new Exception();
throw err;
} catch (Exception e) {
System.out.println("bad");
} finally {
System.out.println("first finally");
}
}
public static void nested() {
System.out.println("begin nested");
try {
try {
throw new Exception();
} catch (Exception e) {
System.out.println("catch inner");
throw new Error();
} finally {
System.out.println("finally inner");
}
} catch (Error e) {
System.out.println("catch outer");
} finally {
System.out.println("finally outer");
}
}
public static void throwInFinally() {
System.out.println("begin throw in finally");
try {
try {
throw new Exception();
} finally {
throw new Error();
}
} catch (Exception e) {
System.out.println("caught exception");
} catch (Error e) {
System.out.println("caught error");
}
}
public static void returnFromCatch() {
System.out.println("begin return from catch");
try {
try {
throw new Error();
} catch (Error e) {
System.out.println("catch");
return;
} finally {
System.out.println("inner finally");
}
} finally {
System.out.println("outer finally");
}
}
public static void returnFromFinally() {
System.out.println("begin return from finally");
try {
try {
throw new Error();
} finally {
System.out.println("inner finally");
return;
}
} catch (Error e) {
System.out.println("bad");
} finally {
System.out.println("outer finally");
}
}
public static void rethrow() {
System.out.println("begin rethrow");
try {
throw new Error();
} catch (Error e) {
System.out.println("first catch");
throw e;
} finally {
System.out.println("finally");
}
}
public static void crazy() {
System.out.println("begin crazy");
while (true) {
try {
try {
try {
throw new Exception();
} finally {
System.out.println("inner finally");
throw new Error();
}
} catch (Exception e) {
System.out.println("catch exception");
}
} catch (Error e) {
System.out.println("catch error");
throw e;
} finally {
System.out.println("outer finally");
break;
}
}
System.out.println("good");
}
static int sideEffect() {
System.out.println("g");
return 42;
}
static int returnWithSideEffects() {
try { return sideEffect(); }
finally { System.out.println("finally"); }
}
static void nestedLandingPad() {
try {
class Inner {
void f() {
System.out.println("inner f");
throw new RuntimeException();
}
void g() {
System.out.println("inner g");
f();
}
}
new Inner().g();
}
finally {
System.out.println("finally");
return;
}
}
}