01: package dinamica;
02:
03: /**
04: * Basic Exception class for all exceptions triggered
05: * by the Recordset related classes (Recordset, RecordsetField, Record)
06: * <br>
07: * Creation date: 11/09/2003<br>
08: * Last Update: 11/09/2003<br>
09: * @author Martin Cordova (dinamica@martincordova.com)
10: */
11: public class RecordsetException extends Throwable {
12:
13: /**
14: *
15: */
16: private static final long serialVersionUID = 1L;
17:
18: public RecordsetException(String msg) {
19: super (msg);
20: }
21:
22: public RecordsetException() {
23: }
24:
25: }
|