blob: 91613aed5e7834cb0c5b364049a5dc7d526978d1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004-2008 Akos Horvath, Gergely Varro and Daniel Varro
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Akos Horvath, Gergely Varro - initial API and implementation
*******************************************************************************/
package org.eclipse.viatra2.gtasm.patternmatcher.impl.gtmatcher.exceptions;
import org.eclipse.viatra2.gtasmmodel.gtasm.metamodel.asm.core.AnnotatedElement;
/**
* The specific exception for the GT Rule execution
* @author Akos Horvath
*
*/
public class GTOperationException extends GraphTransformationException {
/**
*
*/
private static final long serialVersionUID = -4290690575225451930L;
public GTOperationException(String msg, String[] context,
AnnotatedElement element) {
super(msg, context, element);
}
}