blob: ed68b0ad45385561e44721bcc156d7188c3d2982 [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.exceptions;
import org.eclipse.viatra2.gtasm.interpreter.exception.GTASMException;
import org.eclipse.viatra2.gtasmmodel.gtasm.metamodel.asm.core.AnnotatedElement;
public abstract class PatternMatcherException extends GTASMException {
//public PatternMatcherException(String string) {
// super(string);
//}
private static final long serialVersionUID = 2203761737660448809L;
public PatternMatcherException(String msg, String[] context, AnnotatedElement element) {
super(msg,context);
addNewStackElement(element);
}
public PatternMatcherException(String msg, String[] context, AnnotatedElement element, Throwable cause) {
super(msg,context,cause);
addNewStackElement(element);
}
}