Remove dynamic exceptions
[anna.git] / example / comm / server / main.cpp
index d9c5a3b..ab29cf5 100644 (file)
@@ -46,7 +46,7 @@ public:
 private:
    ThreadData <Context> a_contexts;
 
-   void eventReceiveMessage (comm::ClientSocket&, const Message&) throw (RuntimeException);
+   void eventReceiveMessage (comm::ClientSocket&, const Message&) noexcept(false);
 };
 
 class ArithmeticServer : public comm::Application {
@@ -57,9 +57,9 @@ private:
    MyCommunicator a_communicator;
    comm::ServerSocket* a_serverSocket;
 
-   void initialize () throw (RuntimeException);
-   void run () throw (RuntimeException);
-   xml::Node* asXML (xml::Node* app) const throw ();
+   void initialize () noexcept(false);
+   void run () noexcept(false);
+   xml::Node* asXML (xml::Node* app) const ;
 };
 
 using namespace std;
@@ -111,7 +111,7 @@ ArithmeticServer::ArithmeticServer () :
 // Inicializa el servidor de sockets.
 //-----------------------------------------------------------------------------------------
 void ArithmeticServer::initialize () 
-   throw (RuntimeException)
+   noexcept(false)
 {
    CommandLine& cl (CommandLine::instantiate ());
 
@@ -127,7 +127,7 @@ void ArithmeticServer::initialize ()
 // Cuando hay un nuevo mensaje invocar�a Communicator::eventReceiveMessage
 //-----------------------------------------------------------------------------------------
 void ArithmeticServer::run ()
-   throw (RuntimeException)
+   noexcept(false)
 {
    CommandLine& cl (CommandLine::instantiate ());
 
@@ -146,7 +146,7 @@ void ArithmeticServer::run ()
 }
 
 xml::Node* ArithmeticServer::asXML (xml::Node* app) const 
-   throw ()
+   
 {
    xml::Node* node = app::Application::asXML (app);
    
@@ -164,7 +164,7 @@ xml::Node* ArithmeticServer::asXML (xml::Node* app) const
 // transport: Instancia del transporto que ha interpretado el mensaje (getMessage).
 //-----------------------------------------------------------------------------------------
 void MyCommunicator::eventReceiveMessage (ClientSocket& clientSocket, const Message& message)
-   throw (RuntimeException)
+   noexcept(false)
 {
    LOGMETHOD (TraceMethod tm ("MyCommunicator", "eventReceiveMessage", ANNA_FILE_LOCATION));