TooManyFailedAttemptsException constructor

TooManyFailedAttemptsException(
  1. String message, {
  2. String? recoverySuggestion,
  3. String? underlyingException,
})

Exception thrown when too many failed attempts have been made for a given action, such as sign-in.

Implementation

TooManyFailedAttemptsException(String message,
    {String? recoverySuggestion, String? underlyingException})
    : super(message,
          recoverySuggestion: recoverySuggestion,
          underlyingException: underlyingException);