#include #include #include namespace kurator { namespace universe { NotFound::NotFound(std::string _id) : id {std::move(_id)} { } const char* NotFound::what() const noexcept { return "item not found in repository"; // what is not found? use that id } } // namespace universe } // namespace kurator