[portal-commits] JBoss Portal SVN: r8935 - branches/JBoss_Portal_Branch_2_6/wsrp/src/main/org/jboss/portal/wsrp/producer.

portal-commits at lists.jboss.org portal-commits at lists.jboss.org
Wed Nov 14 20:24:55 EST 2007


Author: chris.laprun at jboss.com
Date: 2007-11-14 20:24:55 -0500 (Wed, 14 Nov 2007)
New Revision: 8935

Modified:
   branches/JBoss_Portal_Branch_2_6/wsrp/src/main/org/jboss/portal/wsrp/producer/PortletManagementHandler.java
Log:
- Fixed error message.

Modified: branches/JBoss_Portal_Branch_2_6/wsrp/src/main/org/jboss/portal/wsrp/producer/PortletManagementHandler.java
===================================================================
--- branches/JBoss_Portal_Branch_2_6/wsrp/src/main/org/jboss/portal/wsrp/producer/PortletManagementHandler.java	2007-11-14 23:20:06 UTC (rev 8934)
+++ branches/JBoss_Portal_Branch_2_6/wsrp/src/main/org/jboss/portal/wsrp/producer/PortletManagementHandler.java	2007-11-15 01:24:55 UTC (rev 8935)
@@ -317,17 +317,17 @@
          catch (NoSuchPortletException e)
          {
             throw WSRPExceptionFactory.throwSOAPFaultException(WSRPExceptionFactory.INVALID_HANDLE,
-               "Failed to set properties for portlet '" + portletContext.getPortletHandle(), e);
+               "Failed to set properties for portlet '" + portletContext.getPortletHandle() + "'", e);
          }
          catch (InvalidPortletIdException e)
          {
             throw WSRPExceptionFactory.throwSOAPFaultException(WSRPExceptionFactory.INCONSISTENT_PARAMETERS,
-               "Failed to set properties for portlet '" + portletContext.getPortletHandle(), e);
+               "Failed to set properties for portlet '" + portletContext.getPortletHandle() + "'", e);
          }
          catch (PortletInvokerException e)
          {
             throw WSRPExceptionFactory.throwSOAPFaultException(WSRPExceptionFactory.OPERATION_FAILED,
-               "Failed to set properties for portlet '" + portletContext.getPortletHandle(), e);
+               "Failed to set properties for portlet '" + portletContext.getPortletHandle() + "'", e);
          }
          finally
          {




More information about the portal-commits mailing list