Author: steve.ebersole(a)jboss.com
Date: 2006-08-23 08:43:54 -0400 (Wed, 23 Aug 2006)
New Revision: 10312
Modified:
trunk/Hibernate3/src/org/hibernate/TransactionException.java
Log:
allow nested exception
Modified: trunk/Hibernate3/src/org/hibernate/TransactionException.java
===================================================================
--- trunk/Hibernate3/src/org/hibernate/TransactionException.java 2006-08-22 21:29:27 UTC
(rev 10311)
+++ trunk/Hibernate3/src/org/hibernate/TransactionException.java 2006-08-23 12:43:54 UTC
(rev 10312)
@@ -11,7 +11,7 @@
public class TransactionException extends HibernateException {
- public TransactionException(String message, Exception root) {
+ public TransactionException(String message, Throwable root) {
super(message,root);
}
@@ -20,9 +20,3 @@
}
}
-
-
-
-
-
-
Show replies by date