delight.nashornsandbox.exceptions.BracesException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of delight-nashorn-sandbox Show documentation
Show all versions of delight-nashorn-sandbox Show documentation
A safe sandbox to execute JavaScript code from Nashorn.
The newest version!
package delight.nashornsandbox.exceptions;
import javax.script.ScriptException;
/**
* Exception thrown when braces "{}" are missed in JS script, when it is not
* allowed.
*
* Created on 2017.11.24
*
* @author Marcin Golebski
* @version $Id$
*/
public class BracesException extends ScriptException {
private static final long serialVersionUID = 1L;
public BracesException(final String s) {
super(s);
}
}