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