You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by mm...@apache.org on 2006/11/14 16:21:04 UTC

svn commit: r474817 - /myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/application/ApplicationImpl.java

Author: mmarinschek
Date: Tue Nov 14 07:21:03 2006
New Revision: 474817

URL: http://svn.apache.org/viewvc?view=rev&rev=474817
Log:
more documentation cosmetic changes

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

Modified: myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/application/ApplicationImpl.java
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/application/ApplicationImpl.java?view=diff&rev=474817&r1=474816&r2=474817
==============================================================================
--- myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/application/ApplicationImpl.java (original)
+++ myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/application/ApplicationImpl.java Tue Nov 14 07:21:03 2006
@@ -464,7 +464,7 @@
         Class converterClass = (Class) _converterIdToClassMap.get(converterId);
 
         if(converterClass == null){
-            throw new FacesException("Could not find any registered converter-class for converterId : "+converterId);            
+            throw new FacesException("Could not find any registered converter-class by converterId : "+converterId);
         }
 
         try {
@@ -475,8 +475,8 @@
             return converter;
         }
         catch (Exception e) {
-            log.error("Could not instantiate converter " + converterClass+" for converterId : "+converterId, e);
-            throw new FacesException("Could not instantiate converter " + converterClass+" for converterId : "+converterId, e);
+            log.error("Could not instantiate converter " + converterClass+" by converterId : "+converterId, e);
+            throw new FacesException("Could not instantiate converter " + converterClass+" by converterId : "+converterId, e);
         }
     }
 
@@ -523,8 +523,8 @@
                 return converter;
             }
             catch (Exception e) {
-                log.error("Could not instantiate converter " + converterClassName, e);
-                throw new FacesException("Could not instantiate converter: " + converterClassName, e);
+                log.error("Could not instantiate converter by class-name : " + converterClassName, e);
+                throw new FacesException("Could not instantiate converter by class-name : " + converterClassName, e);
             }
         }