OriginHostManager to abstract Procedure (dyamic) from knowing the OriginHost node
[anna.git] / dynamic / launcher / default / Procedure.hpp
index 91247a3..b8096bc 100644 (file)
 #include <anna/comm/comm.hpp>
 
 
-
 class Procedure {
     anna::comm::Application *a_app;
 
   public:
     Procedure(anna::comm::Application *app) : a_app(app) {;}
 
-    virtual void execute(const std::string &args, std::string &response) throw();
+    virtual void execute(const std::string &args, std::string &response)  throw(anna::RuntimeException);
 };
 
 #endif