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: I7e6f9e0a9d2c91fb5cd82e7a77a3416d1f07247f
diff --git a/hiomap.cpp b/hiomap.cpp
index f9d14b2..2e31248 100644
--- a/hiomap.cpp
+++ b/hiomap.cpp
@@ -445,7 +445,7 @@
*data_len = 0;
}
- catch (const exception::SdBusError& e)
+ catch (const exception::exception& e)
{
return hiomap_xlate_errno(e.get_errno());
}
@@ -488,7 +488,7 @@
*data_len = 4;
}
- catch (const exception::SdBusError& e)
+ catch (const exception::exception& e)
{
return hiomap_xlate_errno(e.get_errno());
}
@@ -518,7 +518,7 @@
*data_len = 4;
}
- catch (const exception::SdBusError& e)
+ catch (const exception::exception& e)
{
return hiomap_xlate_errno(e.get_errno());
}
@@ -560,7 +560,7 @@
*data_len = 6;
}
- catch (const exception::SdBusError& e)
+ catch (const exception::exception& e)
{
return hiomap_xlate_errno(e.get_errno());
}
@@ -611,7 +611,7 @@
*data_len = 0;
}
- catch (const exception::SdBusError& e)
+ catch (const exception::exception& e)
{
return hiomap_xlate_errno(e.get_errno());
}
@@ -644,7 +644,7 @@
*data_len = 0;
}
- catch (const exception::SdBusError& e)
+ catch (const exception::exception& e)
{
return hiomap_xlate_errno(e.get_errno());
}
@@ -667,7 +667,7 @@
*data_len = 0;
}
- catch (const exception::SdBusError& e)
+ catch (const exception::exception& e)
{
return hiomap_xlate_errno(e.get_errno());
}
@@ -697,7 +697,7 @@
*data_len = 0;
}
- catch (const exception::SdBusError& e)
+ catch (const exception::exception& e)
{
return hiomap_xlate_errno(e.get_errno());
}
@@ -728,7 +728,7 @@
*data_len = 0;
}
- catch (const exception::SdBusError& e)
+ catch (const exception::exception& e)
{
return hiomap_xlate_errno(e.get_errno());
}