OriginHostManager to abstract Procedure (dyamic) from knowing the OriginHost node
[anna.git] / dynamic / launcher / gx / 00001 / Procedure.hpp
index 884cad5..d6afe5b 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