You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by jb...@apache.org on 2007/05/07 16:57:52 UTC

svn commit: r535888 - /incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Application.java

Author: jbq
Date: Mon May  7 07:57:52 2007
New Revision: 535888

URL: http://svn.apache.org/viewvc?view=rev&rev=535888
Log:
WICKET-541 Better error message for problematic configuration

Modified:
    incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Application.java

Modified: incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Application.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Application.java?view=diff&rev=535888&r1=535887&r2=535888
==============================================================================
--- incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Application.java (original)
+++ incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Application.java Mon May  7 07:57:52 2007
@@ -374,7 +374,7 @@
 		else
 		{
 			throw new IllegalArgumentException(
-					"Invalid configuration type.  Must be \"development\" or \"deployment\".");
+					"Invalid configuration type: '" + configurationType + "'.  Must be \"development\" or \"deployment\".");
 		}
 	}