diff options
author | 2018-07-02 06:46:09 -0700 | |
---|---|---|
committer | 2018-07-02 06:46:09 -0700 | |
commit | 48396e8616cc45a1599df7d4dba5c21647ad31b2 (patch) | |
tree | 9e4b7a0ad47bc98e5fc6e8a5ef2055557f915fb8 | |
parent | fce00ebc0ab8bfe4938c5cff4ca62771dfcc4ebd (diff) | |
parent | c7b925063fec834b0b9a7a33540cf9d6f25906ed (diff) |
Merge "Modify catch when addInterfaceToLocalNetwork() is called." am: ccd6a0f6c2
am: c7b925063f
Change-Id: Ia160a4cf42e427575a70810d7157e092e47b5992
-rw-r--r-- | services/core/java/com/android/server/connectivity/tethering/TetherInterfaceStateMachine.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/connectivity/tethering/TetherInterfaceStateMachine.java b/services/core/java/com/android/server/connectivity/tethering/TetherInterfaceStateMachine.java index fbee86a84f85..9e6b659dbf93 100644 --- a/services/core/java/com/android/server/connectivity/tethering/TetherInterfaceStateMachine.java +++ b/services/core/java/com/android/server/connectivity/tethering/TetherInterfaceStateMachine.java @@ -379,7 +379,7 @@ public class TetherInterfaceStateMachine extends StateMachine { // that adding routes that already exist does not cause an // error (EEXIST is silently ignored). mNMService.addInterfaceToLocalNetwork(mIfaceName, toBeAdded); - } catch (RemoteException e) { + } catch (Exception e) { mLog.e("Failed to add IPv6 routes to local table: " + e); } |