blob: ef27fc2a7bc9cd0e24f356cd696b0f7151ee2ad4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Kichwa Coders 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:
* Jonah Graham (Kichwa Coders) - initial API and implementation
*******************************************************************************/
package org.eclipse.ease;
/**
* A checked exception to indicate a script engine exception.
*/
public class ScriptEngineException extends Exception {
private static final long serialVersionUID = -4763996831240579435L;
public ScriptEngineException() {
}
public ScriptEngineException(String message) {
super(message);
}
public ScriptEngineException(Throwable cause) {
super(cause);
}
public ScriptEngineException(String message, Throwable cause) {
super(message, cause);
}
}