IModule[] modules = getServerOriginal().getModules();
if (modules != null) {
StringWriter writer = new StringWriter();
for (IModule module : modules) {
ICloudFoundryApplicationModule appModule = getCloudModule(module);
if (appModule == null) {
writer.append(Messages.CloudFoundryServer_ERROR_FAIL_ON_CFAPP_CREATION);
writer.append(module.getId());
writer.append('\n');
}