Package java.security
Class KeyStoreException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.security.GeneralSecurityException
java.security.KeyStoreException
- All Implemented Interfaces:
Serializable
public class KeyStoreException extends GeneralSecurityException
KeyStoreException is a general KeyStore exception.- See Also:
KeyStore, Serialized Form
-
Constructor Summary
Constructors Constructor Description KeyStoreException()Constructs a new instance ofKeyStoreException.KeyStoreException(String msg)Constructs a new instance ofKeyStoreExceptionwith the given message.KeyStoreException(String message, Throwable cause)Constructs a new instance ofKeyStoreExceptionwith the given message and the cause.KeyStoreException(Throwable cause)Constructs a new instance ofKeyStoreExceptionwith the 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
-
KeyStoreException
Constructs a new instance ofKeyStoreExceptionwith the given message.- Parameters:
msg- the detail message for this exception.
-
KeyStoreException
public KeyStoreException()Constructs a new instance ofKeyStoreException. -
KeyStoreException
Constructs a new instance ofKeyStoreExceptionwith the given message and the cause.- Parameters:
message- the detail message for this exception.cause- the exception which is the cause for this exception.
-
KeyStoreException
Constructs a new instance ofKeyStoreExceptionwith the cause.- Parameters:
cause- the exception which is the cause for this exception.
-