blob: 218767f4508c3c56822b83a397495bebd205adb2 [file] [log] [blame]
/*******************************************************************************
* Copyright 2011 Chair for Applied Software Engineering,
* Technische Universitaet Muenchen.
* All rights reserved. This program and the accompanying materials
* are made available under the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
******************************************************************************/
package org.eclipse.emf.emfstore.client.model.exceptions;
/**
* Represents exception in project url resolution. The project cannot be resolved in the current workspace content. The
* project the url refers to has not been checked out yet probably.
*
* @author koegel
*/
@SuppressWarnings("serial")
public class ProjectUrlResolutionException extends Exception {
private static final String EXCEPTION_MESSAGE = "Project Url cannot be resolved, project is not in local workspace, checkout project first.";
/**
* Constructor.
*/
public ProjectUrlResolutionException() {
super(EXCEPTION_MESSAGE);
}
}