Ensure RuntimeExceptions are also caught properly.

While reading the proto stats from disk, AppExitInfoTracker
can crash if a RuntimeException is thrown - update the catch logic.

Bug: 268301239
Change-Id: I76c86d844595674ef2171c13508adb710b151dae
Test: atest ApplicationExitInfoTest
diff --git a/services/core/java/com/android/server/am/AppExitInfoTracker.java b/services/core/java/com/android/server/am/AppExitInfoTracker.java
index 32d2071..1ba3266 100644
--- a/services/core/java/com/android/server/am/AppExitInfoTracker.java
+++ b/services/core/java/com/android/server/am/AppExitInfoTracker.java
@@ -674,7 +674,7 @@
                         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) {