blob: 0cffe204f887aac51d5053c31d5f77c0b5609080 [file] [log] [blame]
/*******************************************************************************
* Copyright 2012 EclipseSource Muenchen GmbH.
*
* 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: Max Hohenegger (initial implementation)
******************************************************************************/
package org.eclipse.emf.emfstore.client.model.exceptions;
import org.eclipse.emf.emfstore.server.exceptions.EmfStoreException;
/**
* Is thrown if an operation is cancleded.
*
* @author wesendon
*/
@SuppressWarnings("serial")
public class CancelOperationException extends EmfStoreException {
/**
* Constructor.
*
* @param message reason why this exception will be thrown
*/
public CancelOperationException(String message) {
super(message);
}
}