xref: /openbmc/sdeventplus/src/sdeventplus/exception.cpp (revision 0a816c5d8054dfe3867423aa4303c5cf7b4a92e9)
1 #include <sdeventplus/exception.hpp>
2 #include <system_error>
3 
4 namespace sdeventplus
5 {
6 
7 SdEventError::SdEventError(int r, const char* prefix) :
8     std::system_error(r, std::generic_category(), prefix)
9 {
10 }
11 
12 } // namespace sdeventplus
13