Remove dynamic exceptions
[anna.git] / include / anna / comm / handler / RemoteConnection.hpp
index 80da4cc..29d7e9d 100644 (file)
@@ -26,18 +26,18 @@ public:
     a_remoteConnection(NULL)
   {;}
 
-  void setup(comm::RemoteConnection* remoteConnection) throw() { a_remoteConnection = remoteConnection; }
+  void setup(comm::RemoteConnection* remoteConnection) { a_remoteConnection = remoteConnection; }
 
-  comm::ClientSocket* getClientSocket() throw();
+  comm::ClientSocket* getClientSocket() ;
 
 private:
   comm::RemoteConnection* a_remoteConnection;
 
-  void initialize() throw(RuntimeException);
-  void finalize() throw();
-  void clone() throw(RuntimeException);
-  std::string asString() const throw();
-  xml::Node* asXML(xml::Node*) const throw();
+  void initialize() noexcept(false);
+  void finalize() ;
+  void clone() noexcept(false);
+  std::string asString() const ;
+  xml::Node* asXML(xml::Node*) const ;
 };
 
 }