FileDocCategorySizeDatePackage
MalformedChunkCodingException.javaAPI DocAndroid 1.5 API2076Wed May 06 22:41:10 BST 2009org.apache.http

MalformedChunkCodingException

public 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.

param
message The exception detail message

        super(message);
    
Methods Summary