FileDocCategorySizeDatePackage
CRLException.javaAPI DocAndroid 1.5 API2222Wed May 06 22:41:06 BST 2009java.security.cert

CRLException

public class CRLException extends GeneralSecurityException
The exception that is thrown if errors occur during handling of {@code CRL}s.
since
Android 1.0

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

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


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

since
Android 1.0

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

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

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

param
cause the cause for this exception.
since
Android 1.0

        super(cause);
    
Methods Summary