Remove dynamic exceptions
[anna.git] / example / comm / datagramKClient / main.cpp
index 82688b4..9fe3ce1 100644 (file)
@@ -32,16 +32,16 @@ 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 ();
       
-   comm::DatagramSocket* getServer () const throw () { return a_output; }
-   const test::Menu& getMenu () const throw () { return a_menu; }
+   comm::DatagramSocket* getServer () const { return a_output; }
+   const test::Menu& getMenu () const { return a_menu; }
    
 private:
    MyCommunicator a_communicator;
@@ -49,8 +49,8 @@ private:
    comm::DatagramSocket* a_output;
    comm::DatagramSocket* a_input;
 
-   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)
 {
    CommandLine& cl (CommandLine::instantiate ());    
 
@@ -118,14 +118,14 @@ void KClient::initialize ()
 }
 
 void KClient::run ()
-   throw (RuntimeException)
+   noexcept(false)
 {   
    a_menu.paint ();
    a_communicator.accept ();
 }
 
 void MyCommunicator::eventReceiveMessage (ClientSocket&, const Message& message)
-   throw (RuntimeException)
+   noexcept(false)
 {
    a_response.decode (message.getBody ());
 
@@ -142,7 +142,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));