Remove dynamic exceptions
[anna.git] / dynamic / launcher / default / Procedure.hpp
index 4d85411..9ed0622 100644 (file)
@@ -20,8 +20,8 @@ class Procedure {
   public:
     Procedure(anna::comm::Application *app) : a_app(app) {;}
 
-    virtual void execute(const std::string &args, std::string &response)  throw(anna::RuntimeException);
-    virtual void execute(const nlohmann::json &args, std::string &response)  throw(anna::RuntimeException);
+    virtual void execute(const std::string &args, std::string &response)  noexcept(false);
+    virtual void execute(const nlohmann::json &args, std::string &response)  noexcept(false);
 };
 
 #endif