Remove dynamic exceptions
[anna.git] / source / comm / internal / LocalConnection.cpp
index cf08a8a..4cf8202 100644 (file)
@@ -19,7 +19,7 @@ using namespace std;
 using namespace anna;
 
 string comm::LocalConnection::asString() const
-throw() {
+{
   string result("comm::LocalConnection { ");
   result += anna::functions::asString(a_clientSocket);
   return result += " }";
@@ -27,7 +27,7 @@ throw() {
 
 // No saca la informacion del ServerSocket por que se invoca desde su asXML.
 xml::Node* comm::LocalConnection::asXML(xml::Node* parent) const
-throw(RuntimeException) {
+noexcept(false) {
   xml::Node* result = parent->createChild("comm.LocalConnection");
 
   if(a_clientSocket != NULL)