// "Add exception to existing catch clause" "false" import java.io.FileInputStream; class Test { void m() { try { new Runnable() { @Override public void run() { } InputStream in = new FileInputStream(""); }; } catch (RuntimeException e) { e.printStackTrace(); } } }