blob: 9b0552a02b38d740abc50c984a7cfca70f220bb9 [file] [log] [blame]
/**
* Copyright (c) 2011-2014 EclipseSource Muenchen GmbH and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Alexandra Buzila - initial API and implementation
*/
package org.eclipse.emf.ecp.quickfix;
/**
* Exception that occurs when applying a quick fix.
*
* @author Alexandra Buzila
*
*/
public class ModelQuickFixException extends Exception {
private static final long serialVersionUID = 298295556617269576L;
/**
* @param message - the detail message
*
* @see java.lang.Exception#Exception(String message)
*/
public ModelQuickFixException(String message) {
super(message);
}
}