X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=example%2Ftimex%2FArithmeticHTTPServer%2FReactor.hpp;fp=example%2Ftimex%2FArithmeticHTTPServer%2FReactor.hpp;h=c7927616741a494dfaf95209af6af55c247589af;hp=949db9057acec660e96fa70213077052eb2eaf49;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/example/timex/ArithmeticHTTPServer/Reactor.hpp b/example/timex/ArithmeticHTTPServer/Reactor.hpp index 949db90..c792761 100644 --- a/example/timex/ArithmeticHTTPServer/Reactor.hpp +++ b/example/timex/ArithmeticHTTPServer/Reactor.hpp @@ -27,14 +27,14 @@ public: Reactor () : comm::Receiver ("http4comm::Reactor") {;} virtual ~Reactor() {;} - static const char* className () throw () { return "http4comm::Reactor"; } + static const char* className () { return "http4comm::Reactor"; } private: Request a_request; Response a_response; http::Response a_httpResponse; - void apply (comm::ClientSocket&, const comm::Message&) throw (RuntimeException); + void apply (comm::ClientSocket&, const comm::Message&) noexcept(false); }; }