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

Commit 4978feff authored by Nathan Harold's avatar Nathan Harold Committed by Automerger Merge Worker
Browse files

Merge "Expose Constructor for ModemActivityInfoException" am: 5887444f am:...

Merge "Expose Constructor for ModemActivityInfoException" am: 5887444f am: 145cbd8f am: c6461bb7 am: ed191fe1

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

Change-Id: I3c0bd14d69d8d32311957ed82a01ecaf187c3dc3
parents c7ebe83d ed191fe1
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -12969,6 +12969,7 @@ package android.telephony {
  }
  public static class TelephonyManager.ModemActivityInfoException extends java.lang.Exception {
    ctor public TelephonyManager.ModemActivityInfoException(int);
    method public int getErrorCode();
    field public static final int ERROR_INVALID_INFO_RECEIVED = 2; // 0x2
    field public static final int ERROR_MODEM_RESPONSE_ERROR = 3; // 0x3
+5 −1
Original line number Diff line number Diff line
@@ -11965,7 +11965,11 @@ public class TelephonyManager {
        private final int mErrorCode;
        /** @hide */
        /**
         * An exception with ModemActivityInfo specific error codes.
         *
         * @param errorCode a ModemActivityInfoError code.
         */
        public ModemActivityInfoException(@ModemActivityInfoError int errorCode) {
            mErrorCode = errorCode;
        }