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 407869
Collapse All | Expand All

(-)a/bundles/org.eclipse.orion.server.core/src/org/eclipse/orion/internal/server/core/Activator.java (-2 / +3 lines)
Lines 93-100 Link Here
93
			if (metastore == null) {
93
			if (metastore == null) {
94
				//if we still don't have a store then something is wrong with server configuration
94
				//if we still don't have a store then something is wrong with server configuration
95
				final String msg = "Invalid server configuration. Failed to initialize a metadata store"; //$NON-NLS-1$
95
				final String msg = "Invalid server configuration. Failed to initialize a metadata store"; //$NON-NLS-1$
96
				logger.error(msg);
96
				final IllegalStateException failure = new IllegalStateException(msg);
97
				throw new IllegalStateException(msg);
97
				logger.error(msg, failure);
98
				throw failure;
98
			}
99
			}
99
		}
100
		}
100
		return metastore;
101
		return metastore;

Return to bug 407869