Remove dynamic exceptions
[anna.git] / example / timex / ArithmeticHTTPServer / Reactor.hpp
index 949db90..c792761 100644 (file)
@@ -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);
 };
 
 }