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

Commit e56db0e3 authored by Christopher Tate's avatar Christopher Tate
Browse files

Don't crash in JNI: add DeadObjectException(String msg) ctor

Bug 22104446

Change-Id: I0a538119269fe45955130e4e3d0d0bae8ee64993
parent 3a0d77f4
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -22800,6 +22800,7 @@ package android.os {
  public class DeadObjectException extends android.os.RemoteException {
    ctor public DeadObjectException();
    ctor public DeadObjectException(java.lang.String);
  }
  public final class Debug {
+1 −0
Original line number Diff line number Diff line
@@ -24747,6 +24747,7 @@ package android.os {
  public class DeadObjectException extends android.os.RemoteException {
    ctor public DeadObjectException();
    ctor public DeadObjectException(java.lang.String);
  }
  public final class Debug {
+4 −0
Original line number Diff line number Diff line
@@ -25,4 +25,8 @@ public class DeadObjectException extends RemoteException {
    public DeadObjectException() {
        super();
    }

    public DeadObjectException(String message) {
        super(message);
    }
}