summaryrefslogtreecommitdiffstats
path: root/src/Core/Exception.cpp
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-06-25 21:43:01 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-06-25 21:43:01 +0200
commit61ac0032dec6cf6d93ca3f2c36af17f93d1682b9 (patch)
tree5989219c8651c4d0d4ff29c5fd870327dd34ad82 /src/Core/Exception.cpp
parent0fa11f6b15185fc2f4d820ddf9b6878c66c1ab38 (diff)
downloadmad-61ac0032dec6cf6d93ca3f2c36af17f93d1682b9.tar
mad-61ac0032dec6cf6d93ca3f2c36af17f93d1682b9.zip
UserManager: Cache Benutzer- und Gruppen-Liste
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: