blob: 2e1c5e5711233b0947be2b31a222942e512d7a16 [file] [log] [blame]
package trycatch17_out;
import java.io.FileNotFoundException;
class TestSimple2 {
void foo(int a) {
try {
/*[*/if (a < 10)
throw new FileNotFoundException();/*]*/
} catch (FileNotFoundException e) {
}
}
}