Package java.security.cert
Class CertificateEncodingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.security.GeneralSecurityException
java.security.cert.CertificateException
java.security.cert.CertificateEncodingException
- All Implemented Interfaces:
Serializable
public class CertificateEncodingException extends CertificateException
The exception that is thrown when an error occurs while a
Certificate
is being encoded.- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description CertificateEncodingException()Creates a newCertificateEncodingException.CertificateEncodingException(String msg)Creates a newCertificateEncodingExceptionwith the specified message.CertificateEncodingException(String message, Throwable cause)Creates a newCertificateEncodingExceptionwith the specified message and cause.CertificateEncodingException(Throwable cause)Creates a newCertificateEncodingExceptionwith the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CertificateEncodingException
Creates a newCertificateEncodingExceptionwith the specified message.- Parameters:
msg- The detail message for the exception.
-
CertificateEncodingException
public CertificateEncodingException()Creates a newCertificateEncodingException. -
CertificateEncodingException
Creates a newCertificateEncodingExceptionwith the specified message and cause.- Parameters:
message- the detail message for the exception.cause- the cause.
-
CertificateEncodingException
Creates a newCertificateEncodingExceptionwith the specified cause.- Parameters:
cause- the cause.
-