
com.github.bloodshura.ignitium.venus.exception.runtime.UndefinedVariableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of venusscript Show documentation
Show all versions of venusscript Show documentation
A dynamic, easy, highly customizable scripting language.
The newest version!
package com.github.bloodshura.ignitium.venus.exception.runtime;
import com.github.bloodshura.ignitium.venus.executor.Context;
public class UndefinedVariableException extends ScriptRuntimeException {
private final String variableName;
public UndefinedVariableException(Context context, String variableName) {
super(context, "Undefined variable \"" + variableName + "\"");
this.variableName = variableName;
}
public String getVariableName() {
return variableName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy