Testing library separation: now not in launcher but isolated
[anna.git] / dynamic / launcher / default / Procedure.cpp
index 57bb7e0..62b0ce2 100644 (file)
@@ -9,11 +9,14 @@
 #include <iostream>
 #include <string>
 
+// Project
+#include <anna/core/Exception.hpp>
+
 
 // Local
 #include "Procedure.hpp"
 
-void Procedure::execute(const std::string &args, std::string &response) throw() {
+void Procedure::execute(const std::string &args, std::string &response, anna::diameter::comm::OriginHost *originHost) throw(anna::RuntimeException) {
   response = "Empty default implementation. Make dynamic library and reimplement this method.";
   if (args != "" ) {
     response += " Provided argument(s) ignored: ";