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

org.bidib.wizard.common.script.ScriptExecutionException Maven / Gradle / Ivy

There is a newer version: 2.0.25
Show newest version
package org.bidib.wizard.common.script;

import org.bidib.wizard.api.script.ScriptCommand;

public class ScriptExecutionException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    private ScriptCommand scriptCommand;

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

    public ScriptExecutionException(String message, final ScriptCommand scriptCommand) {
        super(message);
        this.scriptCommand = scriptCommand;
    }

    /**
     * @return the scriptCommand
     */
    public ScriptCommand getScriptCommand() {
        return scriptCommand;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy