01: package org.netbeans.modules.reportgenerator.api;
02:
03: /**
04: * ReportException is the base exception thrown
05: * by Report Framework.
06: * @author radval
07: *
08: */
09: public class ReportException extends Exception {
10:
11: public ReportException(String message) {
12: super (message);
13: }
14:
15: public ReportException(String message, Exception ex) {
16: super(message, ex);
17: }
18: }
|