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

com.github.adchilds.jython.exception.JythonScriptException Maven / Gradle / Ivy

Go to download

A simple Jython wrapper to allow JVM-based projects to execute or evaluate Python scripts at runtime with ease.

There is a newer version: 2.0.1
Show newest version
package com.github.adchilds.jython.exception;

/**
 * Generic Jython script execution/evaluation exception thrown in potentially unknown circumstances during Jython script
 * execution or evaluation.
 *
 * @author Adam Childs
 * @since 0.1
 */
public class JythonScriptException extends Exception {

    /**
     * {@inheritDoc}
     */
    public JythonScriptException() {
        super();
    }

    /**
     * {@inheritDoc}
     */
    public JythonScriptException(String message) {
        super(message);
    }

    /**
     * {@inheritDoc}
     */
    public JythonScriptException(String message, Throwable cause) {
        super(message, cause);
    }

    /**
     * {@inheritDoc}
     */
    public JythonScriptException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy