blob: 8a3ba03bb373fdec5d66e322483573ded90cd73c [file] [log] [blame]
import java.io.IOException;
import java.net.*;
public class X {
void f() {
try {
throw new NoRouteToHostException();
} catch (NoRouteToHostException e) {
e.printStackTrace();
} catch (SocketException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}