Remove dynamic exceptions
[anna.git] / example / timex / ArithmeticHTTPServer / Application.hpp
index 457f924..3c3ca09 100644 (file)
@@ -37,8 +37,8 @@ class Application : public comm::Application {
 public:
    Application ();
   
-   comm::IndexedDelivery* getService () throw () { return a_service; }
-   http4comm::Context* getContext () throw () { return a_context; }
+   comm::IndexedDelivery* getService () { return a_service; }
+   http4comm::Context* getContext () { return a_context; }
       
 private:
    comm::Communicator* a_communicator;
@@ -50,8 +50,8 @@ private:
    comm::ServerSocket* a_serverSocket;
    comm::IndexedDelivery* a_service;
 
-   void initialize () throw (RuntimeException);
-   void run () throw (RuntimeException);
+   void initialize () noexcept(false);
+   void run () noexcept(false);
 };
 
 }