FileDocCategorySizeDatePackage
UnsupportedDigestAlgorithmException.javaAPI DocAndroid 1.5 API2718Wed May 06 22:41:10 BST 2009org.apache.http.impl.auth

UnsupportedDigestAlgorithmException

public class UnsupportedDigestAlgorithmException extends RuntimeException
Authentication credentials required to respond to a authentication challenge are invalid
author
Oleg Kalnichevski
since
4.0

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


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

param
message the exception detail message

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