/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package jhydra.core.scripting.exceptions;
/**
*
* @author jantic
*/
public class NonPublicScriptClassException extends ScriptFatalException{
private final String scriptPath;
public NonPublicScriptClassException(String scriptPath, Exception e){
super("", e);
this.scriptPath = scriptPath;
}
@Override
public String getMessage(){
return "Error while attempting to load compiled script at " + scriptPath + " - script class must be"
+ " declared public.";
}
}