MalformedChunkCodingExceptionpublic class MalformedChunkCodingException extends IOException Signals a malformed chunked stream. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public MalformedChunkCodingException()Creates a MalformedChunkCodingException without a detail message.
super();
| public MalformedChunkCodingException(String message)Creates a MalformedChunkCodingException with the specified detail message.
super(message);
|
|