View Javadoc
1   package net.logAnalyzer.reports;
2   
3   /***
4    * Exception thrown during report rendering.
5    * 
6    * @author Karim REFEYTON
7    * @version 0.1
8    */
9   public class ReportException extends Exception {
10      private static final long serialVersionUID = 1L;
11  
12      /***
13       * 
14       */
15      public ReportException() {
16          super();
17          // TODO Auto-generated constructor stub
18      }
19  
20      /***
21       * @param message
22       */
23      public ReportException(String message) {
24          super(message);
25          // TODO Auto-generated constructor stub
26      }
27  
28      /***
29       * @param message
30       * @param cause
31       */
32      public ReportException(String message, Throwable cause) {
33          super(message, cause);
34          // TODO Auto-generated constructor stub
35      }
36  
37      /***
38       * @param cause
39       */
40      public ReportException(Throwable cause) {
41          super(cause);
42          // TODO Auto-generated constructor stub
43      }
44  }