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

am: ed9ee780a4

Change-Id: I6815cbc5e896d6e24ea3abc5a258e8e6ecac0135
This commit is contained in:
yinxu
2018-03-13 19:47:30 +00:00
committed by android-build-merger

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);
}
}