// "Add 'catch' clause(s)" "true-preview" class a { void g() throws Exception { } void f() { try { g(); } catch (Error e) { } catch (Exception e) { throw new RuntimeException(e); } } }