mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-21 08:55:34 +07:00
13 lines
189 B
Java
13 lines
189 B
Java
class Test {
|
|
void foo () throws Exception {
|
|
}
|
|
|
|
void bar () {
|
|
try {
|
|
foo();
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
}
|