throws ExecutionException {
// just pass it along
EcoreInferenceHandler eih = new EcoreInferenceHandler(container.eResource());
try {
created = eih.createElement(container, elementType, containerFeature);
} catch (InferenceException e) {
throw new ExecutionException(e.getMessage(), e);
}
return CommandResult.newOKCommandResult(created);