blob: 3268af85e6b5c4c15cdff1521be96a0a8bbf524e [file] [log] [blame]
// "Add Catch Clause(s)" "true"
class a {
void g() throws Exception {
}
void f() {
try {
g();
} catch (Error e) {
} catch (Exception e) {
<caret><selection>e.printStackTrace();</selection>
}
}
}