Corey Jewett <[EMAIL PROTECTED]> writes: > Following patch seems to be necessary to compile under JDK 1.4. > > http://java.sun.com/j2se/1.4/docs/api/java/lang/Throwable.html#getCause()
Patch committed to CVS HEAD, thanks Corey. > Due to deprecation issues I also had to throw out the entire secure > package. Deprecation issues? Wouldn't those just be warnings? > Index: src/java/org/apache/xmlrpc/ParseFailed.java > =================================================================== > RCS file: > /home/cvspublic/xml-rpc/src/java/org/apache/xmlrpc/ParseFailed.java,v > retrieving revision 1.1 > diff -u -r1.1 ParseFailed.java > --- src/java/org/apache/xmlrpc/ParseFailed.java 26 Aug 2002 17:41:57 > -0000 1.1 > +++ src/java/org/apache/xmlrpc/ParseFailed.java 27 Sep 2002 21:31:13 > -0000 > @@ -78,7 +78,7 @@ > this.cause = cause; > } > > - public Exception getCause() > + public Throwable getCause() > { > return cause; > }