View Javadoc

1   /**
2    * 
3    */
4   package ar.com.jiji.kaya.scripting;
5   
6   /**
7    * @author lparra
8    * 
9    */
10  public class ScriptNotFoundException extends ScriptingException {
11  
12  	private static final long serialVersionUID = 1L;
13  
14  	public ScriptNotFoundException(String scriptName, Throwable cause) {
15  		super("El script " + scriptName + " no se encontro", cause);
16  	}
17  
18  	public ScriptNotFoundException(String scriptName) {
19  		this(scriptName, null);
20  	}
21  
22  }