Remove dynamic exceptions
[anna.git] / include / anna / comm / handler / BinderSocket.hpp
index a6d7f1e..73817b8 100644 (file)
@@ -26,18 +26,18 @@ public:
     a_binderSocket(NULL)
   {;}
 
-  void setup(comm::BinderSocket* binderSocket) throw() { a_binderSocket = binderSocket; }
+  void setup(comm::BinderSocket* binderSocket) { a_binderSocket = binderSocket; }
 
 private:
   comm::BinderSocket* a_binderSocket;
 
-  void initialize() throw(RuntimeException);
-  void apply() throw(RuntimeException);
-  void breakAddress(const in_addr_t&) throw() {;}
-  void recoverAddress(const in_addr_t&) throw() {;}
-  void finalize() throw();
-  std::string asString() const throw();
-  xml::Node* asXML(xml::Node*) const throw();
+  void initialize() noexcept(false);
+  void apply() noexcept(false);
+  void breakAddress(const in_addr_t&) {;}
+  void recoverAddress(const in_addr_t&) {;}
+  void finalize() ;
+  std::string asString() const ;
+  xml::Node* asXML(xml::Node*) const ;
 };
 
 }