NoRouteToHostExceptionpublic class NoRouteToHostException extends SocketException The {@code NoRouteToHostException} will be thrown while attempting to connect
to a remote host but the host cannot be reached for instance because of a
badly configured router or a blocking firewall. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public NoRouteToHostException()Constructs a new instance of this exception with its walkback filled in.
super();
| public NoRouteToHostException(String detailMessage)Constructs a new instance of this exception with its walkback and message
filled in.
super(detailMessage);
|
|