final Skip skip = context.getAnnotation(Skip.class);
if (skip != null) {
return new DataResolver() {
public Object resolve() {
throw new SkipModuleExecutionException("skipped " + context.getExtraObject(ModuleInfo.class),
trimToNull(skip.value()));
}
};
}