You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by ks...@apache.org on 2013/03/19 22:54:34 UTC

svn commit: r1458533 - /juddi/trunk/juddiv3-war/src/main/java/org/apache/juddi/servlets/RegistryServlet.java

Author: kstam
Date: Tue Mar 19 21:54:34 2013
New Revision: 1458533

URL: http://svn.apache.org/r1458533
Log:
JUDDI-568 throw the exception out into the container to make it obvious there is a major issue which prevents the jUDDI from starting.

Modified:
    juddi/trunk/juddiv3-war/src/main/java/org/apache/juddi/servlets/RegistryServlet.java

Modified: juddi/trunk/juddiv3-war/src/main/java/org/apache/juddi/servlets/RegistryServlet.java
URL: http://svn.apache.org/viewvc/juddi/trunk/juddiv3-war/src/main/java/org/apache/juddi/servlets/RegistryServlet.java?rev=1458533&r1=1458532&r2=1458533&view=diff
==============================================================================
--- juddi/trunk/juddiv3-war/src/main/java/org/apache/juddi/servlets/RegistryServlet.java (original)
+++ juddi/trunk/juddiv3-war/src/main/java/org/apache/juddi/servlets/RegistryServlet.java Tue Mar 19 21:54:34 2013
@@ -47,6 +47,7 @@ public class RegistryServlet extends Htt
 		} catch (ConfigurationException e) {
 			logger.error("jUDDI registry could not be started."
 					+ e.getMessage(), e);
+			throw new ServletException(e.getMessage(),e);
 		}
 	}
 	



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@juddi.apache.org
For additional commands, e-mail: commits-help@juddi.apache.org