AuthenticationFailedException constructor

AuthenticationFailedException({
  1. Object? cause,
  2. StackTrace? stackTrace,
})

Implementation

AuthenticationFailedException({Object? cause, StackTrace? stackTrace})
    : super(
        'authentication_failed',
        SafeErrorMessages.authenticationFailed,
        cause: cause,
        stackTrace: stackTrace,
      );