blob: cbd22f20f66bf1fbee0e32a1c458d058bed55614 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008-2014 Chair for Applied Software Engineering,
* Technische Universitaet Muenchen.
* 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.internal.client.model.exceptions;
/**
* Represents exception in resolving server URL, the server has never been used to check out a project yet probably.
*
* @author koegel
*/
@SuppressWarnings("serial")
public class ServerUrlResolutionException extends Exception {
private static final String EXCEPTION_MESSAGE = Messages.ServerUrlResolutionException_ResolutionFailed;
/**
* Constructor.
*/
public ServerUrlResolutionException() {
super(EXCEPTION_MESSAGE);
}
}