public class CertificateException extends Exception
Certificate related exceptions.
Note: This package is provided only for compatibility reasons. It contains a simplified version of the java.security.cert package that was previously used by JSSE (Java SSL package). All applications that do not have to be compatible with older versions of JSSE (that is before Java SDK 1.5) should only use java.security.cert.
| Constructor and Description |
|---|
CertificateException()
Creates a new
CertificateException. |
CertificateException(String msg)
Creates a new
CertificateException with the specified message. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic CertificateException(String msg)
CertificateException with the specified message.msg - the detail message for the exception.public CertificateException()
CertificateException.