Merge "Catch throwable exceptions." into nyc-mr1-dev

This commit is contained in:
TreeHugger Robot
2016-06-18 00:26:42 +00:00
committed by Android (Google) Code Review

View File

@@ -753,7 +753,7 @@ public class ZygoteInit {
closeServerSocket();
} catch (MethodAndArgsCaller caller) {
caller.run();
} catch (RuntimeException ex) {
} catch (Throwable ex) {
Log.e(TAG, "Zygote died with exception", ex);
closeServerSocket();
throw ex;