UserRecoverableNotifiedException signals
that there was a Google authentication error which can be recovered with user
action and has been handled by publishing a notification for the user to act
on.
GooglePlayServicesAvailabilityExceptions are
special instances of
UserRecoverableAuthExceptions which are thrown when the expected
Google Play services app is not available for some reason.
GoogleAuthExceptions signal Google authentication errors. In contrast to IOExceptions,
GoogleAuthExceptions imply that authentication shouldn't simply be retried.
Objects whose type is exactly GoogleAuthException
denote an authorization problem that is expected to be permanent and not correctable by the
user, such as invalid client. By contrast, subclasses such as UserRecoverableAuthException)
are used for transient user-correctable issues. A transient issue may also be indicated by an
IOException.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-31 UTC."],[],["`GoogleAuthException` signals errors in Google authentication, unlike `IOException`, they suggest not to retry. These exceptions indicate permanent issues, such as invalid client credentials. Subclasses like `UserRecoverableAuthException` represent user-correctable problems; `UserRecoverableNotifiedException` are those issues that have been notified to the user, while `GooglePlayServicesAvailabilityException` are issues related to Google play services availability. Constructors allow creating exceptions with or without an error message or throwable. It also includes inherited methods for error handling and object management.\n"]]