Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0bb56fd1 authored by Muhammad Hasan Khan's avatar Muhammad Hasan Khan Committed by Automerger Merge Worker
Browse files

Merge "auth: do not wtf on IllegalArgumentException" into sc-dev am: 5d699324

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/13879997

Change-Id: I2cf960154344441aace2649d9561bfc64dee55ed
parents 8e8f9faf 5d699324
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1076,7 +1076,7 @@ public class AccountManagerService
        } catch (RuntimeException e) {
            // The account manager only throws security exceptions, so let's
            // log all others.
            if (!(e instanceof SecurityException)) {
            if (!(e instanceof SecurityException || e instanceof IllegalArgumentException)) {
                Slog.wtf(TAG, "Account Manager Crash", e);
            }
            throw e;