blob: 0897120d1dab89b455dde856b0ce886aae5c069e [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;
import org.eclipse.emf.emfstore.server.exceptions.EmfStoreException;
/**
* If the preparation phase of the commit fails, this exception will be thrown. This is usually the case if the user
* cancels the commit dialog.
*
* @author Adrian Staudt
*/
@SuppressWarnings("serial")
public class CommitCanceledException extends EmfStoreException {
/**
* Constructor.
*
* @param message reason why this exception will be thrown
*/
public CommitCanceledException(String message) {
super(message);
}
}