Class CredentialStoreException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.security.GeneralSecurityException
org.wildfly.security.credential.store.CredentialStoreException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
UnsupportedCredentialTypeException
An exception indicating that operation with
CredentialStore has failed.- Author:
- Peter Skopek.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newCredentialStoreExceptioninstance.Constructs a newCredentialStoreExceptioninstance with an initial message.CredentialStoreException(String message, Throwable cause) Constructs a newCredentialStoreExceptioninstance with an initial message and cause.Constructs a newCredentialStoreExceptioninstance with an initial 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
-
CredentialStoreException
public CredentialStoreException()Constructs a newCredentialStoreExceptioninstance. The message is left blank (null), and no cause is specified. -
CredentialStoreException
Constructs a newCredentialStoreExceptioninstance with an initial message. No cause is specified.- Parameters:
msg- the message
-
CredentialStoreException
Constructs a newCredentialStoreExceptioninstance with an initial message and cause.- Parameters:
message- the messagecause- the cause
-
CredentialStoreException
Constructs a newCredentialStoreExceptioninstance with an initial cause. If a non-nullcause is specified, its message is used to initialize the message of thisException; otherwise the message is left blank (null).- Parameters:
cause- the cause
-