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

Commit aae329f8 authored by Steven Moreland's avatar Steven Moreland Committed by Automerger Merge Worker
Browse files

Merge "DeadObjectException|DeadSystemRuntimeException doc" into main am:...

Merge "DeadObjectException|DeadSystemRuntimeException doc" into main am: 22141cee am: 9e725baf am: 8b1decae

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



Change-Id: I3471740a6b929de442d132d3f2aa30e6a81c0d05
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents b3550b9e 8b1decae
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -19,7 +19,8 @@ import android.os.RemoteException;

/**
 * The object you are calling has died, because its hosting process
 * no longer exists.
 * no longer exists. This is also thrown for low-level binder
 * errors.
 */
public class DeadObjectException extends RemoteException {
    public DeadObjectException() {
+4 −3
Original line number Diff line number Diff line
@@ -18,9 +18,10 @@ package android.os;

/**
 * Exception thrown when a call into system_server resulted in a
 * DeadObjectException, meaning that the system_server has died.  There's
 * nothing apps can do at this point - the system will automatically restart -
 * so there's no point in catching this.
 * DeadObjectException, meaning that the system_server has died or
 * experienced a low-level binder error.  There's * nothing apps can
 * do at this point - the system will automatically restart - so
 * there's no point in catching this.
 *
 * @hide
 */