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: Ieee0127d2f1005aaa3434f792965fd7b6ee0e75f
diff --git a/oemhandler.cpp b/oemhandler.cpp
index 7204241..a2f4fce 100644
--- a/oemhandler.cpp
+++ b/oemhandler.cpp
@@ -103,7 +103,7 @@
             return std::string{};
         }
     }
-    catch (const sdbusplus::exception::SdBusError& e)
+    catch (const sdbusplus::exception::exception& e)
     {
         log<level::ERR>("Error in mapper method call",
                         entry("ERROR=%s", e.what()));
@@ -369,7 +369,7 @@
     {
         bus.call_noreply(method);
     }
-    catch (const sdbusplus::exception::SdBusError& e)
+    catch (const sdbusplus::exception::exception& e)
     {
         log<level::ERR>("Error powering off the chassis",
                         entry("ERROR=%s", e.what()));
@@ -386,7 +386,7 @@
     {
         bus.call_noreply(method);
     }
-    catch (const sdbusplus::exception::SdBusError& e)
+    catch (const sdbusplus::exception::exception& e)
     {
         log<level::ERR>("Error setting factory reset",
                         entry("ERROR=%s", e.what()));
@@ -415,7 +415,7 @@
     {
         bus.call_noreply(method);
     }
-    catch (const sdbusplus::exception::SdBusError& e)
+    catch (const sdbusplus::exception::exception& e)
     {
         log<level::ALERT>("Error calling to reboot the BMC. The BMC needs to "
                           "be manually rebooted to complete the factory reset.",