exception: switch to public sdbus exception

SdBusError was intended to be a private error type inside sdbusplus.
Switch all catch locations to use the general sdbusplus::exception type.

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I3b5d83511afdf17b2911502279087e57a59b9945
diff --git a/dbus-sdr/sensorcommands.cpp b/dbus-sdr/sensorcommands.cpp
index a2a5b65..7a2cbd0 100644
--- a/dbus-sdr/sensorcommands.cpp
+++ b/dbus-sdr/sensorcommands.cpp
@@ -566,7 +566,7 @@
                             "Value", ipmi::Value(*value));
 
         // setDbusProperty intended to resolve dbus exception/rc within the
-        // function but failed to achieve that. Catch SdBusError in the ipmi
+        // function but failed to achieve that. Catch exception in the ipmi
         // callback functions for now (e.g. ipmiSetSensorReading).
         if (ec)
         {
@@ -607,7 +607,7 @@
         boost::system::error_code ec = setDbusProperty(
             ctx, connection, path, sensor::vrInterface, "Selected", *vrMode);
         // setDbusProperty intended to resolve dbus exception/rc within the
-        // function but failed to achieve that. Catch SdBusError in the ipmi
+        // function but failed to achieve that. Catch exception in the ipmi
         // callback functions for now (e.g. ipmiSetSensorReading).
         if (ec)
         {