forked from BruceEckel/OnJava8-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSameHandler.java
More file actions
50 lines (39 loc) · 869 Bytes
/
SameHandler.java
File metadata and controls
50 lines (39 loc) · 869 Bytes
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
// exceptions/SameHandler.java
// (c)2021 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose.
// Visit http://OnJava8.com for more book information.
class EBase1 extends Exception {
}
class Except1 extends EBase1 {
}
class EBase2 extends Exception {
}
class Except2 extends EBase2 {
}
class EBase3 extends Exception {
}
class Except3 extends EBase3 {
}
class EBase4 extends Exception {
}
class Except4 extends EBase4 {
}
public class SameHandler {
void x() throws Except1, Except2, Except3, Except4 {
}
void process() {
}
void f() {
try {
x();
} catch (Except1 e) {
process();
} catch (Except2 e) {
process();
} catch (Except3 e) {
process();
} catch (Except4 e) {
process();
}
}
}