Remove dynamic exceptions
[anna.git] / include / anna / comm / RoundRobinDelivery.hpp
index c5a7776..f876b88 100644 (file)
@@ -37,9 +37,9 @@ public:
     a_iiserver(0)
   {;}
 
-  std::string asString() const throw();
+  std::string asString() const ;
 
-  xml::Node* asXML(xml::Node* parent) const throw();
+  xml::Node* asXML(xml::Node* parent) const ;
 
   /**
      Metodo que devuelve el nombre completo de este selector de recursos.
@@ -47,10 +47,10 @@ public:
      a los que pertenece la clase.
      \return Una cadena con el nombre de este selector.
   */
-  static const char* className() throw() { return "anna::comm::RoundRobinDelivery"; }
+  static const char* className() { return "anna::comm::RoundRobinDelivery"; }
 
 protected:
-  void do_initialize() throw(RuntimeException);
+  void do_initialize() noexcept(false);
 
 private:
   //------------------------------------------------------------------------------------
@@ -58,8 +58,8 @@ private:
   //------------------------------------------------------------------------------------
   iterator a_iiserver;
 
-  comm::Resource* do_apply() throw(RuntimeException);
-  iterator advance() throw();
+  comm::Resource* do_apply() noexcept(false);
+  iterator advance() ;
 };
 
 }