Merge "Catch ServiceSpecificException in weaver service"

This commit is contained in:
Devin Moore
2023-02-01 18:13:58 +00:00
committed by Android (Google) Code Review

View File

@@ -513,7 +513,7 @@ class SyntheticPasswordManager {
WeaverConfig weaverConfig = null;
try {
weaverConfig = weaver.getConfig();
} catch (RemoteException e) {
} catch (RemoteException | ServiceSpecificException e) {
Slog.e(TAG, "Failed to get weaver config", e);
}
if (weaverConfig == null || weaverConfig.slots <= 0) {