Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove bindings CXX from Simgrid
[simgrid.git] / src / cxx / Exception.cxx
diff --git a/src/cxx/Exception.cxx b/src/cxx/Exception.cxx
deleted file mode 100644 (file)
index 5e54f88..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-#include <Exception.hpp>\r
-\r
-namespace SimGrid\r
-{\r
-       namespace Msg\r
-       {\r
-               \r
-                       Exception::Exception()\r
-                       {\r
-                               reason = "Unknown reason";\r
-                       }\r
-               \r
-               \r
-                       Exception::Exception(const Exception& rException)\r
-                       {\r
-                               this->reason = rException.toString();\r
-                       }\r
-               \r
-               \r
-                       Exception::Exception(const char* reason)\r
-                       {\r
-                               this->reason = reason;\r
-                       }\r
-               \r
-               \r
-                       Exception::~Exception()\r
-                       {\r
-                               // NOTHING TODO\r
-                       }\r
-                               \r
-                       const char* Exception::toString(void) const\r
-                       {\r
-                               return this->reason;    \r
-                       }\r
-               \r
-               \r
-                       const Exception& Exception::operator = (const Exception& rException)\r
-                       {\r
-                               this->reason = rException.toString();\r
-                               return *this;\r
-                       }\r
-               \r
-       } // namespace Msg      \r
-\r
-}// namespace SimGrid\r
-\r
-\r
-\r