diff options
Diffstat (limited to 'universe')
-rw-r--r-- | universe/src/NotFound.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/universe/src/NotFound.cpp b/universe/src/NotFound.cpp index e5a4109..ded8ff4 100644 --- a/universe/src/NotFound.cpp +++ b/universe/src/NotFound.cpp @@ -19,7 +19,7 @@ NotFound::NotFound(std::string _id) : const char* NotFound::what() const noexcept { - return "item not found in repository"; // what is not found? use that id + return id.c_str(); } |