Bad `stop_cvd` raised exceptions and interrupted following bring up
steps, catch all `stop_cvd` exceptions

Bug: 263277035
Bug: 263173924
Test: create CVD on a slot with corrupted `stop_cvd`
(https://screenshot.googleplex.com/8aUMW9Ey5uUWbgk)

Change-Id: I173b86ccd4a965e206a95895493d28ce2a1a10b7
diff --git a/internal/lib/cvd_utils.py b/internal/lib/cvd_utils.py
index dfdd36f..e3a9c3e 100644
--- a/internal/lib/cvd_utils.py
+++ b/internal/lib/cvd_utils.py
@@ -446,7 +446,7 @@
     else:
         try:
             ssh_obj.Run(stop_cvd_cmd, retry=0)
-        except subprocess.CalledProcessError as e:
+        except Exception as e:
             logger.debug(
                 "Failed to stop_cvd (possibly no running device): %s", e)