All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.earcam.utilitarian.site.search.offline.ScriptRuntimeException Maven / Gradle / Ivy

/*-
 * #%L
 * io.earcam.utilitarian.site.search.offline
 * %%
 * Copyright (C) 2017 earcam
 * %%
 * SPDX-License-Identifier: (BSD-3-Clause OR EPL-1.0 OR Apache-2.0 OR MIT)
 *
 * You must choose to accept, in full - any individual or combination of
 * the following licenses:
 * 
 * #L%
 */
package io.earcam.utilitarian.site.search.offline;

import javax.script.ScriptException;

public class ScriptRuntimeException extends RuntimeException {

	private static final long serialVersionUID = -965049146878882256L;


	private ScriptRuntimeException(String message)
	{
		super(message);
	}


	public ScriptRuntimeException(ScriptException cause)
	{
		super(cause);
	}


	public static ScriptRuntimeException engineNotFound()
	{
		throw new ScriptRuntimeException("No Javascript engine found");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy