blob: 42aba64326f60826d8f7620fc1ae7e3ad4800957 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2021 Christian Pontesegger and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Christian Pontesegger - initial API and implementation
*******************************************************************************/
package org.eclipse.ease;
import java.util.concurrent.ExecutionException;
public class ScriptEngineInterruptedException extends ExecutionException {
private static final long serialVersionUID = 5509227470725409993L;
public ScriptEngineInterruptedException(InterruptedException e) {
super(e);
}
}