/******************************************************************************* * Copyright (c) 2012-2013 EclipseSource Muenchen GmbH and others. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Maximilian Koegel - initial API and implementation ******************************************************************************/ package org.eclipse.emf.emfstore.client.exceptions; /** * Represents a failure to start an EMFStore Server. * * @author mkoegel * * @noextend This class is not intended to be subclassed by clients. * @noinstantiate This class is not intended to be instantiated by clients. */ public class ESServerStartFailedException extends Exception { private static final long serialVersionUID = 3134589375199519491L; /** * Default constructor. * * @param cause causing exception */ public ESServerStartFailedException(Throwable cause) { super(Messages.ESServerStartFailedException_Server_Start_Failed, cause); } }