blob: 505633d38038cc0d71739015d7976562e811ee72 [file] [log] [blame]
import java.io.*;
public class A_testCatchClause_in {
public void f(File f) {
try {
FileInputStream is = new FileInputStream(f);
} catch (IOException ex) {
System.err.println("file not found");
}
}
}