Remove dynamic exceptions
[anna.git] / include / anna / comm / handler / ClientSocket.hpp
index 167242b..019144d 100644 (file)
@@ -26,18 +26,18 @@ public:
     a_clientSocket(NULL)
   {;}
 
-  void setup(comm::ClientSocket* clientSocket) throw() { a_clientSocket = clientSocket; }
+  void setup(comm::ClientSocket* clientSocket) { a_clientSocket = clientSocket; }
 
-  comm::ClientSocket* getClientSocket() throw() { return a_clientSocket; }
+  comm::ClientSocket* getClientSocket() { return a_clientSocket; }
 
 private:
   comm::ClientSocket* a_clientSocket;
 
-  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 ;
 };
 
 }