Remove dynamic exceptions
[anna.git] / include / anna / comm / handler / ServerSocket.hpp
index 86181e1..2d3bf24 100644 (file)
@@ -28,18 +28,18 @@ public:
     a_serverSocket(NULL)
   {;}
 
-  void setup(comm::ServerSocket* serverSocket) throw() { a_serverSocket = serverSocket; }
+  void setup(comm::ServerSocket* serverSocket) { a_serverSocket = serverSocket; }
 
 private:
   comm::ServerSocket* a_serverSocket;
 
-  void initialize() throw(RuntimeException) ;
-  void apply() throw(RuntimeException);
-  void breakAddress(const in_addr_t&) throw() ;
-  void finalize() throw();
+  void initialize() noexcept(false) ;
+  void apply() noexcept(false);
+  void breakAddress(const in_addr_t&)  ;
+  void finalize() ;
 
-  std::string asString() const throw();
-  xml::Node* asXML(xml::Node*) const throw();
+  std::string asString() const ;
+  xml::Node* asXML(xml::Node*) const ;
 };
 
 }