01: /*
02: * User: mrettig
03: * Date: Jul 12, 2002
04: * Time: 10:26:44 AM
05: */
06: package net.sourceforge.jaxor;
07:
08: import net.sourceforge.jaxor.api.EntityInterface;
09: import net.sourceforge.jaxor.util.SystemException;
10:
11: import java.sql.Connection;
12: import java.sql.SQLException;
13:
14: /**
15: * Translates generic sqlexceptions to runtim exceptions.
16: */
17: public class SystemSQLException extends SystemException {
18:
19: public SystemSQLException(String msg) {
20: super (msg);
21: }
22:
23: public SystemSQLException(SQLException cause, EntityInterface entity) {
24: super (cause);
25: }
26:
27: public SystemSQLException(SQLException cause, MetaRow metaRow,
28: Connection conn) {
29: super(cause);
30: }
31:
32: }
|