Merge "Catch the RuntimeException for stopScan()" into pi-dev

This commit is contained in:
TreeHugger Robot
2018-03-13 19:18:42 +00:00
committed by Android (Google) Code Review

View File

@@ -115,6 +115,8 @@ public class NetworkScan {
telephony.stopNetworkScan(mSubId, mScanId);
} catch (RemoteException ex) {
Rlog.e(TAG, "stopNetworkScan RemoteException", ex);
} catch (RuntimeException ex) {
Rlog.e(TAG, "stopNetworkScan RuntimeException", ex);
}
}