Package java.security.cert
Class CertStoreException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.security.GeneralSecurityException
java.security.cert.CertStoreException
- All Implemented Interfaces:
Serializable
public class CertStoreException extends GeneralSecurityException
The exception that is thrown when an access to a
CertStore fails.- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description CertStoreException()Creates a newCertStoreException.CertStoreException(String msg)Creates a newCertStoreExceptionwith the specified message.CertStoreException(String msg, Throwable cause)Creates a newCertStoreExceptionwith the specified message and cause.CertStoreException(Throwable cause)Creates a newCertStoreExceptionwith 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
-
CertStoreException
Creates a newCertStoreExceptionwith the specified message and cause.- Parameters:
msg- the detail message for this exception.cause- the cause why the access to the certificate store failed.
-
CertStoreException
Creates a newCertStoreExceptionwith the specified cause.- Parameters:
cause- the cause why the access to the certificate store failed.
-
CertStoreException
Creates a newCertStoreExceptionwith the specified message.- Parameters:
msg- the detail message for this exception.
-
CertStoreException
public CertStoreException()Creates a newCertStoreException.
-