luetzkendorf 2005/01/14 04:23:49
Modified: src/stores/org/apache/slide/store/ojb OJBStore.java
Log:
ctor Exception(Throable) not supported in Java 1.3
Revision Changes Path
1.3 +4 -4
jakarta-slide/src/stores/org/apache/slide/store/ojb/OJBStore.java
Index: OJBStore.java
===================================================================
RCS file:
/home/cvs/jakarta-slide/src/stores/org/apache/slide/store/ojb/OJBStore.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- OJBStore.java 10 Jan 2005 18:19:43 -0000 1.2
+++ OJBStore.java 14 Jan 2005 12:23:49 -0000 1.3
@@ -1023,7 +1023,7 @@
if ( pe instanceof PersistenceBrokerException)
e = ((PersistenceBrokerException)pe).getSourceException();
if ( pe instanceof PropertyHandlerException ) {
- Throwable he = pe.getCause();
+ Throwable he = ((PropertyHandlerException)pe).getCause();
if ( he instanceof PersistenceBrokerException )
e = ((PersistenceBrokerException)he).getSourceException();
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]