blob: 30b711cb5e15ac3e644d9130f0bcbea57d35c2bd [file] [log] [blame]
package trycatch_out;
import java.io.IOException;
import java.sql.SQLException;
public class TestMethodThrowsException {
private void thrower() throws SQLException, IOException {
}
public void test() throws SQLException {
try {
/*[*/thrower();/*]*/
} catch (IOException e) {
}
}
}