You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by de...@apache.org on 2007/08/10 08:52:53 UTC

svn commit: r564489 - /webservices/axis2/branches/java/1_3/modules/kernel/src/org/apache/axis2/deployment/WarBasedAxisConfigurator.java

Author: deepal
Date: Thu Aug  9 23:52:52 2007
New Revision: 564489

URL: http://svn.apache.org/viewvc?view=rev&rev=564489
Log:
half fix for 3109 , we need throw the exception

Modified:
    webservices/axis2/branches/java/1_3/modules/kernel/src/org/apache/axis2/deployment/WarBasedAxisConfigurator.java

Modified: webservices/axis2/branches/java/1_3/modules/kernel/src/org/apache/axis2/deployment/WarBasedAxisConfigurator.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_3/modules/kernel/src/org/apache/axis2/deployment/WarBasedAxisConfigurator.java?view=diff&rev=564489&r1=564488&r2=564489
==============================================================================
--- webservices/axis2/branches/java/1_3/modules/kernel/src/org/apache/axis2/deployment/WarBasedAxisConfigurator.java (original)
+++ webservices/axis2/branches/java/1_3/modules/kernel/src/org/apache/axis2/deployment/WarBasedAxisConfigurator.java Thu Aug  9 23:52:52 2007
@@ -91,7 +91,7 @@
      *
      * @param servletConfig the ServletConfig object from the AxisServlet. This method is called from the init() of the AxisServlet.
      */
-    public WarBasedAxisConfigurator(ServletConfig servletConfig) {
+    public WarBasedAxisConfigurator(ServletConfig servletConfig) throws DeploymentException {
         try {
             this.config = servletConfig;
             InputStream axis2Stream = null;
@@ -170,6 +170,7 @@
 
         } catch (DeploymentException e) {
             log.error(e.getMessage(), e);
+            throw e;
         } catch (IOException e) {
             log.error(e.getMessage(), e);
         }



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org