if (decorator==null) {
String msg = localStrings.getLocalString(GenericCrudCommand.class,
"GenericCreateCommand.decorator_not_found",
"The CreationDecorator {0} could not be found in the habitat, is it annotated with @Service ?",
create == null ? "null" : create.decorator().toString());
result.failure(logger, msg);
throw new TransactionFailure(msg);
} else {
// inject the decorator with any parameters from the initial CLI invocation
manager.inject(decorator, paramResolver);