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 with CredentialStore has failed.
Author:
Peter Skopek.
See Also:
  • Constructor Details

    • CredentialStoreException

      public CredentialStoreException()
      Constructs a new CredentialStoreException instance. The message is left blank (null), and no cause is specified.
    • CredentialStoreException

      public CredentialStoreException(String msg)
      Constructs a new CredentialStoreException instance with an initial message. No cause is specified.
      Parameters:
      msg - the message
    • CredentialStoreException

      public CredentialStoreException(String message, Throwable cause)
      Constructs a new CredentialStoreException instance with an initial message and cause.
      Parameters:
      message - the message
      cause - the cause
    • CredentialStoreException

      public CredentialStoreException(Throwable cause)
      Constructs a new CredentialStoreException instance with an initial cause. If a non-null cause is specified, its message is used to initialize the message of this Exception; otherwise the message is left blank (null).
      Parameters:
      cause - the cause