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:
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:
-
Constructor Summary
ConstructorsConstructorDescriptionCertException(String message) Creates a new certificate exception with the provided message.CertException(String message, Throwable cause) Creates a new certificate exception with the provided message. -
Method Summary
Methods inherited from class com.unboundid.util.LDAPSDKException
getExceptionMessage, getExceptionMessage, toString, toStringMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
CertException
Creates a new certificate exception with the provided message.- Parameters:
message- The message to use for this exception.
-
CertException
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.
-