delight.nashornsandbox.exceptions.ScriptMemoryAbuseException 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;
/**
* Exception thrown when script memory usage exides given limit.
*
* Created on 2017.11.25
*
* @author Marcin Golebski
* @version $Id$
*/
public class ScriptMemoryAbuseException extends ScriptAbuseException {
private static final long serialVersionUID = 1L;
public ScriptMemoryAbuseException(final String message, final boolean scriptKilled,
final Throwable throwable) {
super(message, scriptKilled, throwable);
}
}