blob: f9479f797bb6edc6e1148bb584d18bd32352561c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004-2010 Gabor Bergmann 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:
* Gabor Bergmann - initial API and implementation
*******************************************************************************/
package org.eclipse.viatra2.errors;
public class VPMRuntimeControlledException extends VPMRuntimeException {
/**
*
*/
private static final long serialVersionUID = 8722949426838508892L;
public VPMRuntimeControlledException(String s) {
super(s);
}
public VPMRuntimeControlledException(String s, Throwable cause) {
super(s, cause);
}
}