You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sc...@apache.org on 2005/08/11 00:54:14 UTC

svn commit: r231348 - /myfaces/impl/trunk/src/java/org/apache/myfaces/application/ApplicationImpl.java

Author: schof
Date: Wed Aug 10 15:54:12 2005
New Revision: 231348

URL: http://svn.apache.org/viewcvs?rev=231348&view=rev
Log:
Fixes MYFACES-408 (Thanks to Mike Kienenberger for the bug report and fix.)

Modified:
    myfaces/impl/trunk/src/java/org/apache/myfaces/application/ApplicationImpl.java

Modified: myfaces/impl/trunk/src/java/org/apache/myfaces/application/ApplicationImpl.java
URL: http://svn.apache.org/viewcvs/myfaces/impl/trunk/src/java/org/apache/myfaces/application/ApplicationImpl.java?rev=231348&r1=231347&r2=231348&view=diff
==============================================================================
--- myfaces/impl/trunk/src/java/org/apache/myfaces/application/ApplicationImpl.java (original)
+++ myfaces/impl/trunk/src/java/org/apache/myfaces/application/ApplicationImpl.java Wed Aug 10 15:54:12 2005
@@ -614,7 +614,7 @@
         Class validatorClass = (Class) _validatorClassMap.get(validatorId);
         if (validatorClass == null)
         {
-            String message = "Unknown converter id '" + validatorId + "'.";
+            String message = "Unknown validator id '" + validatorId + "'.";
             log.error(message);
             throw new FacesException(message);
         }
@@ -625,8 +625,8 @@
         }
         catch (Exception e)
         {
-            log.error("Could not instantiate converter " + validatorClass, e);
-            throw new FacesException("Could not instantiate converter: " + validatorClass, e);
+            log.error("Could not instantiate validator " + validatorClass, e);
+            throw new FacesException("Could not instantiate validator: " + validatorClass, e);
         }
     }