Fix crash while calling getVendorInterface method observed during aging tests

IllegalArgumentException is possibly caused by issues in HIDL
(HwRemoteBinder), catch this exception to prevent crashing.

Bug: 162705230
Test: atest FrameworksWifiTests
Change-Id: I06fe85a4083db4dd9a8ce3a028e6d43646013673
diff --git a/service/java/com/android/server/wifi/p2p/SupplicantP2pIfaceHal.java b/service/java/com/android/server/wifi/p2p/SupplicantP2pIfaceHal.java
index 2d08861..3d15ec6 100644
--- a/service/java/com/android/server/wifi/p2p/SupplicantP2pIfaceHal.java
+++ b/service/java/com/android/server/wifi/p2p/SupplicantP2pIfaceHal.java
@@ -307,7 +307,7 @@
                                 }
                                 supplicantIface.setResult(status, iface);
                             });
-                } catch (RemoteException e) {
+                } catch (RemoteException | IllegalArgumentException e) {
                     Log.e(TAG, "ISupplicant.getInterface exception: " + e);
                     supplicantServiceDiedHandler();
                     return null;