[hibernate-commits] Hibernate SVN: r11492 - trunk/Hibernate3/src/org/hibernate/cache.
hibernate-commits at lists.jboss.org
hibernate-commits at lists.jboss.org
Tue May 8 21:57:11 EDT 2007
Author: steve.ebersole at jboss.com
Date: 2007-05-08 21:57:11 -0400 (Tue, 08 May 2007)
New Revision: 11492
Modified:
trunk/Hibernate3/src/org/hibernate/cache/CacheException.java
Log:
have ctor take Throwable, not Exception
Modified: trunk/Hibernate3/src/org/hibernate/cache/CacheException.java
===================================================================
--- trunk/Hibernate3/src/org/hibernate/cache/CacheException.java 2007-05-09 01:56:57 UTC (rev 11491)
+++ trunk/Hibernate3/src/org/hibernate/cache/CacheException.java 2007-05-09 01:57:11 UTC (rev 11492)
@@ -12,18 +12,12 @@
super(s);
}
- public CacheException(String s, Exception e) {
+ public CacheException(String s, Throwable e) {
super(s, e);
}
- public CacheException(Exception e) {
+ public CacheException(Throwable e) {
super(e);
}
}
-
-
-
-
-
-
More information about the hibernate-commits
mailing list