Class AccountException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ConcurrentAccessException, DisabledAccountException, ExcessiveAttemptsException, UnknownAccountException

Exception thrown due to a problem with the account under which an authentication attempt is being executed.
Since:
0.1
See Also:
  • Constructor Details

    • AccountException

      Creates a new AccountException.
    • AccountException

      public AccountException(String message)
      Constructs a new AccountException.
      Parameters:
      message - the reason for the exception
    • AccountException

      public AccountException(Throwable cause)
      Constructs a new AccountException.
      Parameters:
      cause - the underlying Throwable that caused this exception to be thrown.
    • AccountException

      public AccountException(String message, Throwable cause)
      Constructs a new AccountException.
      Parameters:
      message - the reason for the exception
      cause - the underlying Throwable that caused this exception to be thrown.