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