*/
@Override
public ScriptLauncher getLauncher(String factoryId, IProject project) throws ScriptNotFoundException, ExecutableNotFoundException {
Environment env = getEnvironment(factoryId, project);
if (env == null) {
throw new ExecutableNotFoundException("Can't find any executable");
}
return new ScriptLauncher(env, project);
}