Remove dynamic exceptions
[anna.git] / example / comm / kClient / main.cpp
index 44524dc..61bba74 100644 (file)
@@ -32,24 +32,24 @@ private:
    test::Response a_response;   
    test::Request a_request;
    
-   void eventReceiveMessage (ClientSocket&, const Message&) throw (RuntimeException);
-   void eventUser (const char* id, const void* context) throw ();   
+   void eventReceiveMessage (ClientSocket&, const Message&) noexcept(false);
+   void eventUser (const char* id, const void* context) ;   
 };
 
 class KClient : public anna::comm::Application {
 public:
    KClient ();
       
-   Server* getServer () const throw () { return a_server; }
-   const test::Menu& getMenu () const throw () { return a_menu; }
+   Server* getServer () const { return a_server; }
+   const test::Menu& getMenu () const { return a_menu; }
    
 private:
    MyCommunicator a_communicator;
    test::Menu a_menu;
    Server* a_server;
 
-   void initialize () throw (RuntimeException);
-   void run () throw (RuntimeException);    
+   void initialize () noexcept(false);
+   void run () noexcept(false);    
 };
 
 using namespace std;
@@ -92,7 +92,7 @@ KClient::KClient () :
 }
 
 void KClient::initialize () 
-   throw (RuntimeException)
+   noexcept(false)
 {
    LOGMETHOD (TraceMethod tm ("MyCommunicator", "initialize", ANNA_FILE_LOCATION));
 
@@ -117,7 +117,7 @@ void KClient::initialize ()
 }
 
 void KClient::run ()
-   throw (RuntimeException)
+   noexcept(false)
 {   
    LOGMETHOD (TraceMethod tm ("MyCommunicator", "run", ANNA_FILE_LOCATION));
 
@@ -126,7 +126,7 @@ void KClient::run ()
 }
 
 void MyCommunicator::eventReceiveMessage (ClientSocket&, const Message& message)
-   throw (RuntimeException)
+   noexcept(false)
 {
    LOGMETHOD (TraceMethod tm ("MyCommunicator", "eventReceiveMessage", ANNA_FILE_LOCATION));
 
@@ -145,7 +145,7 @@ void MyCommunicator::eventReceiveMessage (ClientSocket&, const Message& message)
 // notifica al comunicador mediante un evento de usuario.
 //-----------------------------------------------------------------------------------------
 void MyCommunicator::eventUser (const char* id, const void* context) 
-   throw ()
+   
 {
    LOGMETHOD (TraceMethod tm ("MyCommunicator", "eventUser", ANNA_FILE_LOCATION));