Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 189168
Collapse All | Expand All

(-)src/org/eclipse/update/internal/core/messages.properties (+1 lines)
Lines 348-350 Link Here
348
FeatureExecutableContentProvider_UnableToRetriveArchiveContentRef = Unable to retreive archive content reference
348
FeatureExecutableContentProvider_UnableToRetriveArchiveContentRef = Unable to retreive archive content reference
349
SiteCategory_other_label = Other
349
SiteCategory_other_label = Other
350
SiteCategory_other_description = Features found under this category are either not categorized or their categories could not be found on server.
350
SiteCategory_other_description = Features found under this category are either not categorized or their categories could not be found on server.
351
LocalSite_error_loading_config=Error while loading platform configuration
(-)src/org/eclipse/update/internal/core/LocalSite.java (-1 / +5 lines)
Lines 18-23 Link Here
18
import org.eclipse.core.runtime.CoreException;
18
import org.eclipse.core.runtime.CoreException;
19
import org.eclipse.core.runtime.IProgressMonitor;
19
import org.eclipse.core.runtime.IProgressMonitor;
20
import org.eclipse.core.runtime.IStatus;
20
import org.eclipse.core.runtime.IStatus;
21
import org.eclipse.core.runtime.Status;
21
import org.eclipse.osgi.util.NLS;
22
import org.eclipse.osgi.util.NLS;
22
import org.eclipse.update.configuration.IActivity;
23
import org.eclipse.update.configuration.IActivity;
23
import org.eclipse.update.configuration.IInstallConfiguration;
24
import org.eclipse.update.configuration.IInstallConfiguration;
Lines 93-99 Link Here
93
			new SiteLocalParser(platformConfig, localSite);
94
			new SiteLocalParser(platformConfig, localSite);
94
			return true;
95
			return true;
95
		} catch (Exception exception) {
96
		} catch (Exception exception) {
96
			return false;
97
			throw new CoreException(new Status(IStatus.ERROR, UpdateCore.getPlugin().getBundle().getSymbolicName(),
98
					IStatus.OK,
99
					Messages.LocalSite_error_loading_config, 
100
					exception));
97
		}
101
		}
98
	}
102
	}
99
103
(-)src/org/eclipse/update/internal/core/Messages.java (+1 lines)
Lines 49-54 Link Here
49
	public static String InstallHandler_error;
49
	public static String InstallHandler_error;
50
	public static String InstallMonitor_DownloadSize;
50
	public static String InstallMonitor_DownloadSize;
51
	public static String InstallMonitor_DownloadSizeLong;
51
	public static String InstallMonitor_DownloadSizeLong;
52
	public static String LocalSite_error_loading_config;
52
	public static String ProductProvider;
53
	public static String ProductProvider;
53
	public static String Reconciler_appNotFound;
54
	public static String Reconciler_appNotFound;
54
	public static String JarContentReference_Unpacking;
55
	public static String JarContentReference_Unpacking;

Return to bug 189168