FileDocCategorySizeDatePackage
NonRepeatableRequestException.javaAPI DocAndroid 1.5 API2263Wed May 06 22:41:10 BST 2009org.apache.http.client

NonRepeatableRequestException

public class NonRepeatableRequestException extends ProtocolException
Signals failure to retry the request due to non-repeatable request entity.
author
Oleg Kalnichevski
since
4.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public NonRepeatableRequestException()
Creates a new NonRepeatableEntityException with a null detail message.


                   
      
        super();
    
public NonRepeatableRequestException(String message)
Creates a new NonRepeatableEntityException with the specified detail message.

param
message The exception detail message

        super(message);
    
Methods Summary