blob: 9e051c38cc538f8ff93256d64e74bcdb220b3eca [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.properties;
import java.util.List;
import org.eclipse.emf.emfstore.common.model.EMFStoreProperty;
/**
* Exception that indicates that some client-side properties are outdated.
*
* @author emueller
*/
public class EMFStorePropertiesOutdatedException extends Exception {
private static final long serialVersionUID = 2732549512392764249L;
private final List<EMFStoreProperty> outdatedProperties;
/**
* Constructor.
*
* @param outdatedProperties
* the list of out dated properties.
*/
public EMFStorePropertiesOutdatedException(List<EMFStoreProperty> outdatedProperties) {
this.outdatedProperties = outdatedProperties;
}
/**
* Returns the out dated properties.
*
* @return the out dated properties.
*/
public List<EMFStoreProperty> getOutdatedProperties() {
return outdatedProperties;
}
}