01: package org.dbbrowser.ui.helper.exporthelper;
02:
03: import org.dbbrowser.ui.UIControllerForQueries;
04:
05: /**
06: * Instance of this exception is thrown when there is any problem during exporting the results
07: * @author amangat
08: */
09: public class ExportHelperException extends Exception {
10: private static final long serialVersionUID = UIControllerForQueries.version;
11:
12: /**
13: * Constructer
14: * @param message
15: */
16: public ExportHelperException(String message) {
17: super(message);
18: }
19: }
|