mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 03:07:47 +07:00
20 lines
560 B
Java
20 lines
560 B
Java
import java.io.FileNotFoundException;
|
|
import java.io.IOException;
|
|
|
|
// "Add Catch Clause(s)" "true"
|
|
class CatchExceptions {
|
|
|
|
void foo() throws java.io.IOException, java.io.FileNotFoundException {
|
|
|
|
}
|
|
|
|
void bar() {
|
|
try {
|
|
foo();
|
|
} catch (FileNotFoundException e) {
|
|
<selection>e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.</selection>
|
|
} catch (IOException e) {
|
|
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
|
|
}
|
|
}
|
|
} |