X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=example%2Ftimex%2FArithmeticHTTPServer%2FAcceptor.hpp;h=99438abf0aef5f7d3d8deeca68a09dc0774709df;hp=7a59009e8fd99238c8d91659ca47d470d36ee9d6;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/example/timex/ArithmeticHTTPServer/Acceptor.hpp b/example/timex/ArithmeticHTTPServer/Acceptor.hpp index 7a59009..99438ab 100644 --- a/example/timex/ArithmeticHTTPServer/Acceptor.hpp +++ b/example/timex/ArithmeticHTTPServer/Acceptor.hpp @@ -31,15 +31,15 @@ class Acceptor : public http::Handler { public: Acceptor () : http::Handler ("http4comm::Acceptor") {;} - static const char* className () throw () { return "http4comm::Acceptor"; } + static const char* className () { return "http4comm::Acceptor"; } private: Request a_testRequest; Response a_testResponse; - void initialize () throw (RuntimeException); - void evRequest (comm::ClientSocket&, const http::Request& request) throw (RuntimeException); - void evResponse (comm::ClientSocket&, const http::Response&) throw (RuntimeException) {;} + void initialize () noexcept(false); + void evRequest (comm::ClientSocket&, const http::Request& request) noexcept(false); + void evResponse (comm::ClientSocket&, const http::Response&) noexcept(false) {;} }; }