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

io.polaris.core.script.ScriptEvalException Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package io.polaris.core.script;

/**
 * @author Qt
 * @since 1.8
 */
public class ScriptEvalException extends RuntimeException{

	private static final long serialVersionUID = 1L;

	public ScriptEvalException(String message) {
		super(message);
	}

	public ScriptEvalException(String message, Throwable cause) {
		super(message, cause);
	}

	public ScriptEvalException(Throwable cause) {
		super(cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy