X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=example%2Ftimex%2FArithmeticHTTPServer%2FTransaction.hpp;fp=example%2Ftimex%2FArithmeticHTTPServer%2FTransaction.hpp;h=6521d11d564d30daf1d1856684f2657ec13a85e4;hp=ea067abad891a52c639960fefa646e052d5246a5;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/example/timex/ArithmeticHTTPServer/Transaction.hpp b/example/timex/ArithmeticHTTPServer/Transaction.hpp index ea067ab..6521d11 100644 --- a/example/timex/ArithmeticHTTPServer/Transaction.hpp +++ b/example/timex/ArithmeticHTTPServer/Transaction.hpp @@ -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); }; }