FailedAttemptsLimitExceededException constructor

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

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

Implementation

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