blob: cd648d5b356be9e784d6e90146a40b5a7dfc850e [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.server.exceptions;
/**
* Represents a condition where a project id is invalid.
*
* @author koegel
*/
@SuppressWarnings("serial")
public class InvalidProjectIdException extends EmfStoreException {
/**
* Default constructor.
*
* @param message the message
* @param cause underlying exception
*/
public InvalidProjectIdException(String message, Throwable cause) {
super(message, cause);
}
/**
* Default constructor.
*
* @param message the message
*/
public InvalidProjectIdException(String message) {
super(message);
}
}