FileDocCategorySizeDatePackage
BindException.javaAPI DocAndroid 1.5 API1596Wed May 06 22:41:04 BST 2009java.net

BindException

public class BindException extends SocketException
A {@code BindException} is thrown when a process cannot bind a local address/port, either because it is already bound or reserved by the OS.
since
Android 1.0

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

since
Android 1.0


                      
      
        super();
    
public BindException(String detailMessage)
Constructs a new instance with its walkback and message filled in.

param
detailMessage detail message of the exception.
since
Android 1.0

        super(detailMessage);
    
Methods Summary