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