#include #include #include namespace kurator { namespace universe { NotFound::NotFound(std::string _id) : id {std::move(_id)} { } const char* NotFound::what() const noexcept { return id.c_str(); } } // namespace universe } // namespace kurator