blob: 1cfba4fbe23cfa800a7a77d31dc6185253ad8230 [file] [log] [blame]
William A. Kennington III8f90e282018-07-17 14:40:14 -07001#include <sdeventplus/exception.hpp>
2#include <system_error>
3
4namespace sdeventplus
5{
6
7SdEventError::SdEventError(int r, const char *prefix) :
8 std::system_error(r, std::generic_category(), prefix)
9{
10}
11
12} // namespace sdeventplus