View Javadoc

1   /**
2    * 
3    */
4   package ar.com.jiji.kaya.reports;
5   
6   import ar.com.jiji.kaya.KayaException;
7   
8   /**
9    * Indica algun error durante la generacion de un reporte.
10   * 
11   * @author lparra
12   * 
13   */
14  public class ReportException extends KayaException {
15  
16  	private static final long serialVersionUID = 1L;
17  
18  	public ReportException() {
19  		super();
20  	}
21  
22  	public ReportException(String msg, Throwable t) {
23  		super(msg, t);
24  	}
25  
26  	public ReportException(String msg) {
27  		super(msg);
28  	}
29  
30  	public ReportException(Throwable t) {
31  		super(t);
32  	}
33  
34  }