Package org.owasp.esapi.errors
Class CertificateException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.owasp.esapi.errors.EnterpriseSecurityException
-
- org.owasp.esapi.errors.CertificateException
-
- All Implemented Interfaces:
java.io.Serializable
public class CertificateException extends EnterpriseSecurityException
A CertificateException should be thrown for any problems that arise during processing of digital certificates.- Author:
- Jeff Williams (jeff.williams@aspectsecurity.com)
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.owasp.esapi.errors.EnterpriseSecurityException
logger, logMessage
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
CertificateException()
Instantiates a new certificate exception.CertificateException(java.lang.String userMessage, java.lang.String logMessage)
Creates a new instance of CertificateException.CertificateException(java.lang.String userMessage, java.lang.String logMessage, java.lang.Throwable cause)
Instantiates a new CertificateException.
-
Method Summary
-
Methods inherited from class org.owasp.esapi.errors.EnterpriseSecurityException
getLogMessage, getUserMessage
-
-
-
-
Constructor Detail
-
CertificateException
protected CertificateException()
Instantiates a new certificate exception.
-
CertificateException
public CertificateException(java.lang.String userMessage, java.lang.String logMessage)
Creates a new instance of CertificateException.- Parameters:
userMessage
- the message displayed to the userlogMessage
- the message logged
-
CertificateException
public CertificateException(java.lang.String userMessage, java.lang.String logMessage, java.lang.Throwable cause)
Instantiates a new CertificateException.- Parameters:
userMessage
- the message displayed to the userlogMessage
- the message loggedcause
- the cause
-
-