Remove dynamic exceptions
[anna.git] / source / comm / internal / RemoteConnection.cpp
index 795969c..308e7e0 100644 (file)
@@ -17,14 +17,14 @@ using namespace std;
 using namespace anna;
 
 string comm::RemoteConnection::asString() const
-throw() {
+{
   string result("comm::RemoteConnection { ");
   result += anna::functions::asString(a_clientSocket);
   return result += " }";
 }
 
 xml::Node* comm::RemoteConnection::asXML(xml::Node* parent) const
-throw(RuntimeException) {
+noexcept(false) {
   xml::Node* result = parent->createChild("comm.RemoteConnection");
 
   if(a_clientSocket != NULL)