blob: b204b2b2a80fdabe1d33f99b389de4ae2c543e57 [file] [log] [blame]
package trycatch17_in;
import java.io.FileNotFoundException;
class TestSimple2 {
void foo(int a) {
/*[*/if (a < 10)
throw new FileNotFoundException();/*]*/
}
}