also catch other exceptions besides ScriptException

Signed-off-by: Kai Kreuzer <kai@openhab.org>
This commit is contained in:
Kai Kreuzer 2016-04-14 17:33:19 +02:00
Родитель 1a7473c662
Коммит df1e704e55
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -17,7 +17,6 @@ import java.util.concurrent.CopyOnWriteArraySet;
import javax.script.ScriptContext;
import javax.script.ScriptEngine;
import javax.script.ScriptEngineManager;
import javax.script.ScriptException;
import org.eclipse.smarthome.automation.handler.ModuleHandlerFactory;
import org.eclipse.smarthome.automation.module.script.ScriptScopeProvider;
@ -228,8 +227,8 @@ public class ScriptModuleActivator implements BundleActivator {
String scriptToEval = Joiner.on(",\n").join(expressions);
try {
engine.eval(scriptToEval);
} catch (ScriptException e) {
logger.error("ScriptException while importing scope: {}", e.getMessage());
} catch (Exception e) {
logger.error("Exception while importing scope: {}", e.getMessage());
}
}