FileDocCategorySizeDatePackage
CertPathBuilderException.javaAPI DocAndroid 1.5 API2305Wed May 06 22:41:06 BST 2009java.security.cert

CertPathBuilderException

public class CertPathBuilderException extends GeneralSecurityException
The exception that is thrown when a {@code CertPathBuilder} method fails.
since
Android 1.0

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

param
msg the detail message for the exception
param
cause why the building of the certification path failed.
since
Android 1.0


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

param
cause why the building of the certification path failed.
since
Android 1.0

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

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

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

since
Android 1.0

    
Methods Summary