blob: e402e69b2c34a101f7f2f1053da40e5674780d63 [file] [log] [blame]
package trycatch18_in;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
class TestWithThrows3 {
public FileInputStream foo(int a) throws FileNotFoundException {
try {
/*[*/FileInputStream f = new FileInputStream("a.b");
return f;/*]*/
} catch (FileNotFoundException e) {
// do nothing
}
return null;
}
}