FileDocCategorySizeDatePackage
CertificateParsingException.javaAPI DocAndroid 1.5 API2249Wed May 06 22:41:06 BST 2009java.security.cert

CertificateParsingException

public class CertificateParsingException extends CertificateException
The exception that is thrown when a {@code Certificate} can not be parsed.
since
Android 1.0

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

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


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

since
Android 1.0

    
public CertificateParsingException(String message, Throwable cause)
Creates a new {@code CertificateParsingException} with the specified message and cause.

param
message the detail message for the exception.
param
cause the exception's source.
since
Android 1.0

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

param
cause the exception's source.
since
Android 1.0

        super(cause);
    
Methods Summary