You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by eh...@apache.org on 2007/01/04 21:32:59 UTC

svn commit: r492727 - /incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/protocol/http/HttpSessionStore.java

Author: ehillenius
Date: Thu Jan  4 12:32:58 2007
New Revision: 492727

URL: http://svn.apache.org/viewvc?view=rev&rev=492727
Log:
improvement in error reporting

Modified:
    incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/protocol/http/HttpSessionStore.java

Modified: incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/protocol/http/HttpSessionStore.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/protocol/http/HttpSessionStore.java?view=diff&rev=492727&r1=492726&r2=492727
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/protocol/http/HttpSessionStore.java (original)
+++ incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/protocol/http/HttpSessionStore.java Thu Jan  4 12:32:58 2007
@@ -67,8 +67,8 @@
 			catch (Exception e)
 			{
 				throw new WicketRuntimeException(
-						"Internal error cloning object. Make sure all dependent objects implement Serializable. Class: "
-								+ valueTypeName, e);
+						"Internal error cloning object. Make sure all dependent objects implement Serializable. Class="
+								+ valueTypeName + ",attribute=" + name + ", value=" + value, e);
 			}
 		}