blob: 590fe38243062f7edc1e0ccb4148ee3d011fd31e (
plain)
1
2
3
4
5
6
7
8
9
10
|
// version 7:
public class MultiCatch {
public void test() {
try {
System.out.println();
} catch (IllegalArgumentException | IllegalStateException e) {
e.printStackTrace();
}
}
}
|