summaryrefslogtreecommitdiffstats
path: root/src/Core/Exception.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Core/Exception.cpp')
-rw-r--r--src/Core/Exception.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Core/Exception.cpp b/src/Core/Exception.cpp
index fbae6aa..1a71ebd 100644
--- a/src/Core/Exception.cpp
+++ b/src/Core/Exception.cpp
@@ -43,6 +43,8 @@ std::string Exception::strerror() const {
return ret + "Not finished";
case NOT_IMPLEMENTED:
return ret + "Not implemented";
+ case NOT_FOUND:
+ return ret + "Not found";
case INTERNAL_ERRNO:
return ret + std::strerror(subCode);
case INVALID_ADDRESS: