Update of /cvsroot/hibernate/Hibernate/cirrus/hibernate
In directory sc8-pr-cvs1:/tmp/cvs-serv30547/cirrus/hibernate
Modified Files:
Environment.java PropertyAccessException.java
Log Message:
fixed an NPE that occurred on IBM JVM
nest InvocationTargetExceptions
Index: Environment.java
===================================================================
RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/Environment.java,v
retrieving revision 1.80
retrieving revision 1.81
diff -C2 -d -r1.80 -r1.81
*** Environment.java 27 Dec 2002 11:54:48 -0000 1.80
--- Environment.java 31 Dec 2002 08:22:29 -0000 1.81
***************
*** 39,43 ****
public final class Environment {
! private static final String VERSION = "1.2.1";
/**
--- 39,43 ----
public final class Environment {
! private static final String VERSION = "1.2.1b";
/**
Index: PropertyAccessException.java
===================================================================
RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/PropertyAccessException.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** PropertyAccessException.java 27 Oct 2002 03:11:33 -0000 1.2
--- PropertyAccessException.java 31 Dec 2002 08:22:29 -0000 1.3
***************
*** 14,18 ****
public PropertyAccessException(Exception root, String s, boolean wasSetter, Class persistentClass, String propertyName) {
! super(s);
this.persistentClass = persistentClass;
this.wasSetter = wasSetter;
--- 14,18 ----
public PropertyAccessException(Exception root, String s, boolean wasSetter, Class persistentClass, String propertyName) {
! super(s, root);
this.persistentClass = persistentClass;
this.wasSetter = wasSetter;
|