#include #include namespace psemek::util { char const * not_implemented_error::what() const noexcept { return "not implemented"; } void not_implemented() { throw not_implemented_error{}; } }