// "Add Catch Clause(s)" "true" class a { void g() throws Exception { } void f() { try { g(); } catch (Error e) { } } }