You are viewing a plain text version of this content. The canonical link for it is here.
Posted to portalapps-dev@portals.apache.org by wo...@apache.org on 2014/11/11 00:43:00 UTC

svn commit: r1637995 - /portals/applications/webcontent/branches/apa-webcontent-1.x/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java

Author: woonsan
Date: Mon Nov 10 23:42:58 2014
New Revision: 1637995

URL: http://svn.apache.org/r1637995
Log:
APA-68: adding cause in ServletException when configuration loading fails.

Modified:
    portals/applications/webcontent/branches/apa-webcontent-1.x/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java

Modified: portals/applications/webcontent/branches/apa-webcontent-1.x/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java
URL: http://svn.apache.org/viewvc/portals/applications/webcontent/branches/apa-webcontent-1.x/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java?rev=1637995&r1=1637994&r2=1637995&view=diff
==============================================================================
--- portals/applications/webcontent/branches/apa-webcontent-1.x/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java (original)
+++ portals/applications/webcontent/branches/apa-webcontent-1.x/webcontent-jar/src/main/java/org/apache/portals/applications/webcontent/proxy/impl/DefaultHttpReverseProxyServlet.java Mon Nov 10 23:42:58 2014
@@ -830,7 +830,7 @@ public class DefaultHttpReverseProxyServ
         }
         catch (Exception e)
         {
-            throw new ServletException("Failed to load configuration: " + configResourcePath);
+            throw new ServletException("Failed to load configuration: " + configResourcePath, e);
         }
         finally
         {