FileDocCategorySizeDatePackage
NoRouteToHostException.javaAPI DocAndroid 1.5 API1734Wed May 06 22:41:04 BST 2009java.net

NoRouteToHostException

public 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.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public NoRouteToHostException()
Constructs a new instance of this exception with its walkback filled in.

since
Android 1.0


                         
      
        super();
    
public NoRouteToHostException(String detailMessage)
Constructs a new instance of this exception with its walkback and message filled in.

param
detailMessage the detail message for this exception.
since
Android 1.0

        super(detailMessage);
    
Methods Summary