summaryrefslogtreecommitdiffstats
path: root/src/Common/Exception.cpp
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2008-09-25 13:36:02 +0200
committerMatthias Schiffer <matthias@gamezock.de>2008-09-25 13:36:02 +0200
commitaf0f84058d322d68cbbff98ef272dd2bcd0f692c (patch)
tree23b1fb83790f2100ae2d16eb0af71122e88cba0a /src/Common/Exception.cpp
parent3a8e13c8ef66a4fdb06b2051bd7ab95ca24cc81c (diff)
downloadmad-af0f84058d322d68cbbff98ef272dd2bcd0f692c.tar
mad-af0f84058d322d68cbbff98ef272dd2bcd0f692c.zip
Daemon-Host kann jetzt heruntergefahren und neu gestartet werden
Diffstat (limited to 'src/Common/Exception.cpp')
-rw-r--r--src/Common/Exception.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Common/Exception.cpp b/src/Common/Exception.cpp
index 9366fe7..67eb1d9 100644
--- a/src/Common/Exception.cpp
+++ b/src/Common/Exception.cpp
@@ -42,6 +42,8 @@ std::string Exception::strerror() const {
return ret + "Not available";
case NOT_FINISHED:
return ret + "Not finished";
+ case NOT_IMPLEMENTED:
+ return ret + "Not implemented";
case INTERNAL_ERRNO:
return ret + std::strerror(subCode);
case INTERNAL_GNUTLS: