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