Remove dynamic exceptions
[anna.git] / source / comm / handler / BinderSocket.cpp
index 34ddfe9..b1da86e 100644 (file)
@@ -25,7 +25,7 @@ using namespace anna;
 // La apertura de cierre de este Socket se hace desde el comm::Socket.
 //-----------------------------------------------------------------------
 void comm::handler::BinderSocket::initialize()
-throw(RuntimeException) {
+noexcept(false) {
   if(a_binderSocket == NULL) {
     string msg(asString());
     msg += " | comm::BinderSocket was not established";
@@ -41,13 +41,13 @@ throw(RuntimeException) {
 // compartido que va a crear.
 //---------------------------------------------------------------------------------------
 void comm::handler::BinderSocket::apply()
-throw(RuntimeException) {
+noexcept(false) {
   Guard guard(a_binderSocket);
   a_binderSocket->responseBind();
 }
 
 void comm::handler::BinderSocket::finalize()
-throw() {
+{
   if(a_binderSocket == NULL)
     return;
 
@@ -57,7 +57,7 @@ throw() {
 }
 
 string comm::handler::BinderSocket::asString() const
-throw() {
+{
   string result("comm::handler::BinderSocket { ");
   result += comm::Handler::asString();
   result += " | ";
@@ -66,7 +66,7 @@ throw() {
 }
 
 xml::Node* comm::handler::BinderSocket::asXML(xml::Node* parent) const
-throw() {
+{
   xml::Node* result = parent->createChild("comm.handler.BinderSocket");
   comm::Handler::asAttribute(result);