FileDocCategorySizeDatePackage
AuthenticationException.javaAPI DocAndroid 1.5 API2619Wed May 06 22:41:10 BST 2009org.apache.http.auth

AuthenticationException

public class AuthenticationException extends ProtocolException
Signals a failure in authentication process
author
Oleg Kalnichevski
since
4.0

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


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

param
message the exception detail message

        super(message);
    
public AuthenticationException(String message, Throwable cause)
Creates a new AuthenticationException 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, cause);
    
Methods Summary