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

org.zodiac.script.engine.ScriptEngineException Maven / Gradle / Ivy

package org.zodiac.script.engine;

public class ScriptEngineException extends RuntimeException {

    private static final long serialVersionUID = 721130562873239770L;

    public ScriptEngineException() {
        super();
    }

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy