ProtocolExceptionpublic class ProtocolException extends IOException Signals that either a connection attempt to a socket of the wrong type, the
application of an unsupported operation or that a general error in the
underlying protocol has occurred. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public ProtocolException()Constructs a new instance of this class with its walkback filled in.
super();
| public ProtocolException(String detailMessage)Constructs a new instance of this class with its walkback and message
filled in.
super(detailMessage);
|
|