FileDocCategorySizeDatePackage
CertStoreException.javaAPI DocAndroid 1.5 API2261Wed May 06 22:41:06 BST 2009java.security.cert

CertStoreException

public class CertStoreException extends GeneralSecurityException
The exception that is thrown when an access to a {@code CertStore} fails.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public CertStoreException(String msg, Throwable cause)
Creates a new {@code CertStoreException} with the specified message and cause.

param
msg the detail message for this exception.
param
cause the cause why the access to the certificate store failed.
since
Android 1.0


                                                                  
         
        super(msg, cause);
    
public CertStoreException(Throwable cause)
Creates a new {@code CertStoreException} with the specified cause.

param
cause the cause why the access to the certificate store failed.
since
Android 1.0

        super(cause);
    
public CertStoreException(String msg)
Creates a new {@code CertStoreException} with the specified message.

param
msg the detail message for this exception.
since
Android 1.0

        super(msg);
    
public CertStoreException()
Creates a new {@code CertStoreException}.

since
Android 1.0

    
Methods Summary