Merge "Binder: Log details of pending exception." into oc-dev

This commit is contained in:
Narayan Kamath
2017-04-19 08:03:00 +00:00
committed by Android (Google) Code Review

View File

@@ -193,10 +193,10 @@ static void report_exception(JNIEnv* env, jthrowable excep, const char* msg)
if (env->IsInstanceOf(excep, gErrorOffsets.mClass)) {
/*
* It's an Error: Reraise the exception and ask the runtime to abort.
* This will dump the pending exception as well as all thread traces
* to the log.
*/
env->Throw(excep);
ALOGE("java.lang.Error thrown during binder transaction (stack trace follows) : ");
env->ExceptionDescribe();
env->FatalError("java.lang.Error thrown during binder transaction.");
}