BindExceptionpublic 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. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public BindException()Constructs a new instance with its walkback filled in.
super();
| public BindException(String detailMessage)Constructs a new instance with its walkback and message filled in.
super(detailMessage);
|
|