View Javadoc

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