Package com.unboundid.util.ssl.cert
Class CertException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.unboundid.util.LDAPSDKException
-
- com.unboundid.util.ssl.cert.CertException
-
- All Implemented Interfaces:
java.io.Serializable
@NotMutable @ThreadSafety(level=COMPLETELY_THREADSAFE) public final class CertException extends LDAPSDKException
This class defines an exception that can be thrown if a problem is encountered while performing certificate processing.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CertException(java.lang.String message)
Creates a new certificate exception with the provided message.CertException(java.lang.String message, java.lang.Throwable cause)
Creates a new certificate exception with the provided message.
-
Method Summary
-
Methods inherited from class com.unboundid.util.LDAPSDKException
getExceptionMessage, getExceptionMessage, toString, toString
-
-
-
-
Constructor Detail
-
CertException
public CertException(java.lang.String message)
Creates a new certificate exception with the provided message.- Parameters:
message
- The message to use for this exception.
-
CertException
public CertException(java.lang.String message, java.lang.Throwable cause)
Creates a new certificate exception with the provided message.- Parameters:
message
- The message to use for this exception.cause
- The exception that triggered this exception.
-
-