Java In A Nutshell, 5th Edition
This class is the superclass of several more specific exception types that may be thrown when working with certificates. Figure 14-49. java.security.cert.CertificateException
public class CertificateException extends java.security.GeneralSecurityException { // Public Constructors public CertificateException ( ); 5.0 public CertificateException (Throwable cause ); public CertificateException (String msg ); 5.0 public CertificateException (String message , Throwable cause ); }
Subclasses
CertificateEncodingException , CertificateExpiredException , CertificateNotYetValidException , CertificateParsingException Thrown By
Too many methods to list. |