KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > calipso > reportgenerator > common > InfoException


1 package com.calipso.reportgenerator.common;
2
3
4
5 /**
6  * Excepción genérica del módulo generador de reportes.
7  */

8 public class InfoException extends CalipsoException {
9
10     public InfoException(String JavaDoc message) {
11       super(message);
12     }
13
14     public InfoException(Throwable JavaDoc cause) {
15       super(cause);
16     }
17
18     public InfoException(String JavaDoc message, Throwable JavaDoc cause) {
19         super(message, cause);
20     }
21
22 }
23
Popular Tags