mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
20 lines
288 B
Java
20 lines
288 B
Java
package test;
|
|
|
|
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) {}
|
|
}
|
|
}
|