Merge "Ensure RuntimeExceptions are also caught properly." into udc-dev am: bfe8bcef78

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

Change-Id: I59433fa7854edfdbc37ef76a8acbf81c71facc48
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Varun Shah
2023-03-05 17:08:00 +00:00
committed by Automerger Merge Worker

View File

@@ -674,7 +674,7 @@ public final class AppExitInfoTracker {
break;
}
}
} catch (IOException | IllegalArgumentException | WireTypeMismatchException e) {
} catch (Exception e) {
Slog.w(TAG, "Error in loading historical app exit info from persistent storage: " + e);
} finally {
if (fin != null) {