ProtocolExceptionpublic class ProtocolException extends HttpException Signals that an HTTP protocol violation has occurred.
For example a malformed status line or headers, a missing message body, etc. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public ProtocolException()Creates a new ProtocolException with a null detail message.
super();
| public ProtocolException(String message)Creates a new ProtocolException with the specified detail message.
super(message);
| public ProtocolException(String message, Throwable cause)Creates a new ProtocolException with the specified detail message and cause.
super(message, cause);
|
|