Merge "Catch the RuntimeException for stopScan()"

This commit is contained in:
Treehugger Robot
2018-03-14 19:47:44 +00:00
committed by Gerrit 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);
}
}