mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
17 lines
272 B
Java
17 lines
272 B
Java
class JavaClass {
|
|
void testMethod() {
|
|
Test test = new Test();
|
|
test.none();
|
|
|
|
try {
|
|
test.one();
|
|
}
|
|
catch (E1 e) {}
|
|
|
|
try {
|
|
test.two();
|
|
}
|
|
catch (E1 e) {}
|
|
catch (E2 e) {}
|
|
}
|
|
} |