Class InvalidAuthenticationConfigurationException

  • All Implemented Interfaces:
    Serializable

    public class InvalidAuthenticationConfigurationException
    extends IllegalArgumentException
    An exception thrown to indicate that the client authentication configuration is invalid. Examine the cause for more information about the problem.
    Author:
    David M. Lloyd
    See Also:
    Serialized Form
    • Constructor Detail

      • InvalidAuthenticationConfigurationException

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

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

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

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