You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ba...@apache.org on 2005/09/24 13:58:40 UTC

svn commit: r291285 - /myfaces/impl/trunk/src/java/org/apache/myfaces/convert/ConverterUtils.java

Author: baranda
Date: Sat Sep 24 04:58:36 2005
New Revision: 291285

URL: http://svn.apache.org/viewcvs?rev=291285&view=rev
Log:
Fixed exception text. Thanks to Dennis Byrne

Modified:
    myfaces/impl/trunk/src/java/org/apache/myfaces/convert/ConverterUtils.java

Modified: myfaces/impl/trunk/src/java/org/apache/myfaces/convert/ConverterUtils.java
URL: http://svn.apache.org/viewcvs/myfaces/impl/trunk/src/java/org/apache/myfaces/convert/ConverterUtils.java?rev=291285&r1=291284&r2=291285&view=diff
==============================================================================
--- myfaces/impl/trunk/src/java/org/apache/myfaces/convert/ConverterUtils.java (original)
+++ myfaces/impl/trunk/src/java/org/apache/myfaces/convert/ConverterUtils.java Sat Sep 24 04:58:36 2005
@@ -71,7 +71,7 @@
 		}
 		else
 		{
-			throw new IllegalArgumentException("Cannot convert " + value.toString() + " to int");
+			throw new IllegalArgumentException("Cannot convert " + value.toString() + " to boolean");
 		}
 	}