You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by am...@apache.org on 2009/10/01 13:55:44 UTC

svn commit: r820619 - /webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/AxisServiceBasedMultiLanguageEmitter.java

Author: amilas
Date: Thu Oct  1 11:55:43 2009
New Revision: 820619

URL: http://svn.apache.org/viewvc?rev=820619&view=rev
Log:
setting the root cause exception to the exception being thrown

Modified:
    webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/AxisServiceBasedMultiLanguageEmitter.java

Modified: webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/AxisServiceBasedMultiLanguageEmitter.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/AxisServiceBasedMultiLanguageEmitter.java?rev=820619&r1=820618&r2=820619&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/AxisServiceBasedMultiLanguageEmitter.java (original)
+++ webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/AxisServiceBasedMultiLanguageEmitter.java Thu Oct  1 11:55:43 2009
@@ -2807,7 +2807,7 @@
                             PolicyUtil.getSafeString(PolicyUtil.policyComponentToString(policy)),
                             inputElt);
                 } catch (Exception ex) {
-                    throw new RuntimeException("can't serialize the policy ..");
+                    throw new RuntimeException("can't serialize the policy ..", ex);
                 }
             }
 
@@ -2880,7 +2880,7 @@
                             PolicyUtil.getSafeString(PolicyUtil.policyComponentToString(policy)),
                             outputElt);
                 } catch (Exception ex) {
-                    throw new RuntimeException("can't serialize the policy ..");
+                    throw new RuntimeException("can't serialize the policy ..", ex);
                 }
             }
         }