blob: 03bfd6824985d3a61b8da619560f08192087b128 [file] [log] [blame]
package trycatch_in;
import java.io.File;
import java.net.MalformedURLException;
public class TestAlreadyCaught {
public void foo() {
File file= null;
try {
/*]*/file.toURL();/*[*/
} catch(MalformedURLException e) {
}
}
}