import java.io.*; public class X { void f() { try { new FileInputStream("file.txt"); } catch (FileNotFoundException e) { } } }