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