View Javadoc

1   package ar.com.jiji.kaya.scripting;
2   
3   import ar.com.jiji.kaya.KayaRuntimeException;
4   
5   /**
6    * 
7    */
8   
9   /**
10   * @author lparra
11   * 
12   */
13  public class ScriptingException extends KayaRuntimeException {
14  
15  	private static final long serialVersionUID = 1L;
16  
17  	public ScriptingException() {
18  		super();
19  	}
20  
21  	public ScriptingException(String message, Throwable cause) {
22  		super(message, cause);
23  	}
24  
25  	public ScriptingException(String message) {
26  		super(message);
27  	}
28  
29  	public ScriptingException(Throwable cause) {
30  		super(cause);
31  	}
32  
33  }