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 aCertStorefails.- 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 Detail
-
CertStoreException
public CertStoreException(String msg, Throwable cause)
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
public CertStoreException(Throwable cause)
Creates a newCertStoreExceptionwith the specified cause.- Parameters:
cause- the cause why the access to the certificate store failed.
-
CertStoreException
public CertStoreException(String msg)
Creates a newCertStoreExceptionwith the specified message.- Parameters:
msg- the detail message for this exception.
-
CertStoreException
public CertStoreException()
Creates a newCertStoreException.
-
-