made changes to executor-humidity

This commit is contained in:
julius.lautz
2021-12-11 19:09:34 +01:00
parent c87a732e2a
commit aaffb0371e
6 changed files with 75 additions and 10 deletions

View File

@@ -1,5 +1,6 @@
package ch.unisg.executorbase.executor.domain;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
@@ -88,6 +89,6 @@ public abstract class ExecutorBase {
* Implementation of the actual execution method of an executor
* @return the execution result
**/
protected abstract String execution(String input);
protected abstract String execution(String input) throws ConnectorException, IOException, ConnectorException;
}