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 ba8b114..af39654 100644
--- a/src/Core/Exception.cpp
+++ b/src/Core/Exception.cpp
@@ -45,6 +45,8 @@ std::string Exception::strerror() const {
return ret + "Not implemented";
case NOT_FOUND:
return ret + "Not found";
+ case INVALID_INPUT:
+ return ret + "Invalid input";
case INTERNAL_ERRNO:
return ret + std::strerror(subCode);
case INVALID_ADDRESS: