Don't crash Car Service without display brightness

If VHAL doesn't implement display brightness control, SysUI will fail to start.

Bug: 143779011
Test: enable Jeep VHAL, SysUI doesn't crash anymore
Change-Id: I1953f853d8cfa22fddcf72e31f1fa96efcdfd936
diff --git a/service/src/com/android/car/hal/PowerHalService.java b/service/src/com/android/car/hal/PowerHalService.java
index 82d2b59..b215a76 100644
--- a/service/src/com/android/car/hal/PowerHalService.java
+++ b/service/src/com/android/car/hal/PowerHalService.java
@@ -278,7 +278,7 @@
         try {
             mHal.set(VehicleProperty.DISPLAY_BRIGHTNESS, 0).to(brightness);
             Log.i(CarLog.TAG_POWER, "send display brightness = " + brightness);
-        } catch (PropertyTimeoutException e) {
+        } catch (PropertyTimeoutException | IllegalArgumentException e) {
             Log.e(CarLog.TAG_POWER, "cannot set DISPLAY_BRIGHTNESS", e);
         }
     }