Class AuthenticationMechanismException

  • All Implemented Interfaces:
    java.io.Serializable

    public class AuthenticationMechanismException
    extends java.lang.Exception
    This class represents an authentication mechanism exception. This exception is thrown when the authentication mechanism is unable to authenticate the user.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      AuthenticationMechanismException​(java.lang.String message)
      Create an authentication mechanism exception with the specified message.
      AuthenticationMechanismException​(java.lang.String message, java.lang.Throwable cause)
      Create an authentication mechanism exception with the specified message and cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • AuthenticationMechanismException

        public AuthenticationMechanismException​(java.lang.String message)
        Create an authentication mechanism exception with the specified message.
        Parameters:
        message - The message.
      • AuthenticationMechanismException

        public AuthenticationMechanismException​(java.lang.String message,
                                                java.lang.Throwable cause)
        Create an authentication mechanism exception with the specified message and cause.
        Parameters:
        message - The message.
        cause - The cause.