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

HttpException

public class HttpException extends Exception
Signals that an HTTP exception has occurred.
author
Laura Werner
version
$Revision: 618017 $ $Date: 2008-02-03 08:42:22 -0800 (Sun, 03 Feb 2008) $

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

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

param
message the exception detail message

        super(message);
    
public HttpException(String message, Throwable cause)
Creates a new HttpException with the specified detail message and cause.

param
message the exception detail message
param
cause the Throwable that caused this exception, or null if the cause is unavailable, unknown, or not a Throwable

        super(message);
        ExceptionUtils.initCause(this, cause);
    
Methods Summary