Remove dynamic exceptions
[anna.git] / example / timex / ArithmeticHTTPServer / Transaction.hpp
index ea067ab..6521d11 100644 (file)
@@ -30,7 +30,7 @@ class Transaction : public anna::timex::Transaction {
 public:
    Transaction ();
 
-   comm::ClientSocket* getClientSocket () throw () { return a_clientSocket; } 
+   comm::ClientSocket* getClientSocket () { return a_clientSocket; } 
 
    void setClientSocket (comm::ClientSocket* clientSocket) { a_clientSocket = clientSocket; }
 
@@ -38,7 +38,7 @@ private:
    comm::ClientSocket* a_clientSocket;
    http::Response* a_httpResponse;
    
-   void expire (anna::timex::Engine*) throw (RuntimeException);
+   void expire (anna::timex::Engine*) noexcept(false);
 };
 
 }