mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
22 lines
420 B
Plaintext
22 lines
420 B
Plaintext
class ChangeSignatureTest {
|
|
void foo() throws Exception {
|
|
}
|
|
|
|
void bar() throws Exception {
|
|
foo();
|
|
}
|
|
|
|
{
|
|
try {
|
|
bar();
|
|
} catch (Exception e) {
|
|
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
|
|
}
|
|
}
|
|
}
|
|
|
|
class Derived extends ChangeSignatureTest {
|
|
void bar () throws Exception {
|
|
super.bar();
|
|
}
|
|
} |