SocketExceptionpublic class SocketException extends IOException This {@code SocketException} may be thrown during socket creation or setting
options, and is the superclass of all other socket related exceptions. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public SocketException()Constructs a new {@code SocketException} instance with its walkback
filled in.
super();
| public SocketException(String detailMessage)Constructs a new {@code SocketException} instance with its walkback and
message filled in.
super(detailMessage);
|
|