Merge "auth: do not wtf on IllegalArgumentException" into sc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
5d6993247e
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user