Class UnsupportedCredentialTypeException

All Implemented Interfaces:
Serializable

public class UnsupportedCredentialTypeException extends CredentialStoreException
An exception indicating that given credential store is not supporting particular Credential class.
Author:
Peter Skopek.
See Also:
  • Constructor Details

    • UnsupportedCredentialTypeException

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

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

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

      public UnsupportedCredentialTypeException(Throwable cause)
      Constructs a new UnsupportedCredentialTypeException 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