mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-13 22:19:08 +00:00
10 lines
192 B
Java
10 lines
192 B
Java
// version 7:
|
|
public class MultiCatch {
|
|
public void test() {
|
|
try {
|
|
System.out.println();
|
|
} catch (IllegalArgumentException | IllegalStateException e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
} |