blob: 53dc882da9a9e416ba5e6ada213f9434bfcf464b [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
* http://www.eclipse.org/legal/epl-v10.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Christian Pontesegger - initial API and implementation
*******************************************************************************/
package org.eclipse.ease;
public class ScriptEngineCancellationException extends RuntimeException {
private static final long serialVersionUID = 1512188622840964368L;
public ScriptEngineCancellationException() {
super("Terminated on user request");
}
}