From: <one...@us...> - 2003-02-01 00:33:41
|
Update of /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate In directory sc8-pr-cvs1:/tmp/cvs-serv514 Modified Files: JDBCException.java Log Message: initialize the wrapped exception in the constructor Index: JDBCException.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/JDBCException.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** JDBCException.java 14 Jan 2003 13:43:59 -0000 1.1 --- JDBCException.java 1 Feb 2003 00:33:38 -0000 1.2 *************** *** 33,36 **** --- 33,37 ---- public JDBCException(String string, SQLException root) { super(string, root); + sqle=root; LogFactory.getLog(JDBCExceptionReporter.class).error(string, root); } |