mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
264 B
Java
13 lines
264 B
Java
class Test {
|
|
void foo () throws Exception {
|
|
}
|
|
|
|
void bar () {
|
|
try {
|
|
foo();
|
|
} catch (Exception e) {
|
|
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
|
|
}
|
|
}
|
|
}
|