Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 04b996ab authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Binder: disambiguate unlinkToDeath error" am: 46001697

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

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: Id5363cdd0c0daadfcc326aa7688aa030703242a2
parents 82131128 46001697
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1516,7 +1516,9 @@ static jboolean android_os_BinderProxy_unlinkToDeath(JNIEnv* env, jobject obj,
            res = JNI_TRUE;
        } else {
            jniThrowException(env, "java/util/NoSuchElementException",
                              "Death link does not exist");
                              base::StringPrintf("Death link does not exist (%s)",
                                                 statusToString(err).c_str())
                                      .c_str());
        }
    }