David W. Van Couvering wrote: > I can use reflection to see if the initCause() method is available, and > call it if it's there. For JDK 1.3 vms, I can ensure that the stack > trace is logged prior to converting the exception.
Just on the initCause method, the engine does:
if (JVMInfo.JDK_ID >= JVMInfo.J2SE_14)
xae.initCause(se);
(See EmbedXAConnection.java)
Dan.
