#include #include namespace psemek::util { not_implemented_error::not_implemented_error(boost::stacktrace::stacktrace stacktrace) : exception("Not implemented", std::move(stacktrace)) {} void not_implemented() { throw not_implemented_error{}; } }