// "Add exception to existing catch clause" "false" import java.util.*; class MyTest { void demo(List strings) { try { strings.forEach(this::foo); } catch (Exception ex) { // handle } } private void foo(String s) throws Exception { throw new Exception(); } }