Remove dynamic exceptions
[anna.git] / include / anna / comm / handler / DatagramSocket.hpp
index 19058b5..1e92b0a 100644 (file)
@@ -28,19 +28,19 @@ public:
     a_datagramSocket(NULL)
   {;}
 
-  void setup(comm::DatagramSocket* datagramSocket) throw() { a_datagramSocket = datagramSocket; }
+  void setup(comm::DatagramSocket* datagramSocket) { a_datagramSocket = datagramSocket; }
 
-  comm::ClientSocket* getClientSocket() throw();
+  comm::ClientSocket* getClientSocket() ;
 
 private:
   comm::DatagramSocket* a_datagramSocket;
 
-  void initialize() throw(RuntimeException);
-  void apply() throw(RuntimeException);
-  void finalize() throw();
+  void initialize() noexcept(false);
+  void apply() noexcept(false);
+  void finalize() ;
 
-  std::string asString() const throw();
-  xml::Node* asXML(xml::Node*) const throw();
+  std::string asString() const ;
+  xml::Node* asXML(xml::Node*) const ;
 };
 
 }