AuthenticationException constructor
- required AuthenticationErrorReason reason,
- String code = authenticationErrorCode,
- String? message,
- dynamic details,
- String? stacktrace,
Creates an exception with the reason why the user was not authenticated.
Implementation
AuthenticationException({
required this.reason,
super.code = authenticationErrorCode,
super.message,
super.details,
super.stacktrace,
});