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
 
 public class CredentialStoreException extends GeneralSecurityException An exception indicating that operation withCredentialStorehas failed.- Author:
- Peter Skopek.
- See Also:
- Serialized Form
 
- 
- 
Field SummaryFields Modifier and Type Field Description private static longserialVersionUID
 - 
Constructor SummaryConstructors Constructor Description CredentialStoreException()Constructs a newCredentialStoreExceptioninstance.CredentialStoreException(String msg)Constructs a newCredentialStoreExceptioninstance with an initial message.CredentialStoreException(String message, Throwable cause)Constructs a newCredentialStoreExceptioninstance with an initial message and cause.CredentialStoreException(Throwable cause)Constructs a newCredentialStoreExceptioninstance with an initial cause.
 - 
Method Summary- 
Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
- 
 
- 
- 
- 
Field Detail- 
serialVersionUIDprivate static final long serialVersionUID - See Also:
- Constant Field Values
 
 
- 
 - 
Constructor Detail- 
CredentialStoreExceptionpublic CredentialStoreException() Constructs a newCredentialStoreExceptioninstance. The message is left blank (null), and no cause is specified.
 - 
CredentialStoreExceptionpublic CredentialStoreException(String msg) Constructs a newCredentialStoreExceptioninstance with an initial message. No cause is specified.- Parameters:
- msg- the message
 
 - 
CredentialStoreExceptionpublic CredentialStoreException(String message, Throwable cause) Constructs a newCredentialStoreExceptioninstance with an initial message and cause.- Parameters:
- message- the message
- cause- the cause
 
 - 
CredentialStoreExceptionpublic CredentialStoreException(Throwable cause) 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
 
 
- 
 
-