Having compilation error in JDK 1.3.  The following is the fix for it to work.

 

 

Index: RepositoryXmlProcessor.java

===================================================================

--- RepositoryXmlProcessor.java  (revision 429533)

+++ RepositoryXmlProcessor.java           (working copy)

@@ -814,12 +814,12 @@

 

         public ForwardException(Throwable cause)

         {

-            super(cause);

+            super(cause.getMessage());

         }

 

         public ForwardException(String message, Throwable cause)

         {

-            super(message, cause);

+            super(message);

         }

     }

 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to