svn commit: r691522 - /ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r691522 - /ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy

jleroux@apache.org
Author: jleroux
Date: Tue Sep  2 23:17:36 2008
New Revision: 691522

URL: http://svn.apache.org/viewvc?rev=691522&view=rev
Log:
Fix typos in error msgs

Modified:
    ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy

Modified: ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy?rev=691522&r1=691521&r2=691522&view=diff
==============================================================================
--- ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy (original)
+++ ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy Tue Sep  2 23:17:36 2008
@@ -77,7 +77,7 @@
             try {
                 findByEntity.setString(field.getName(), fval);
             } catch (NumberFormatException nfe) {
-                Debug.logError(nfe, "Caught an exception : " + nfe.toString(), "FindGeneric.bsh");
+                Debug.logError(nfe, "Caught an exception : " + nfe.toString(), "FindGeneric.groovy");
                 errMsgList.add("Entered value is non-numeric for numeric field: " + field.getName());
             }
         }
@@ -153,12 +153,12 @@
             
             resultEli.close();
         } catch (GenericEntityException e) {
-            Debug.logError(e, "Failure in operation, rolling back transaction", "FindGeneric.bsh");
+            Debug.logError(e, "Failure in operation, rolling back transaction", "FindGeneric.groovy");
             try {
                 // only rollback the transaction if we started one...
                 TransactionUtil.rollback(beganTransaction, "Error looking up entity values in WebTools Entity Data Maintenance", e);
             } catch (GenericEntityException e2) {
-                Debug.logError(e2, "Could not rollback transaction: " + e2.toString(), "FindGeneric.bsh");
+                Debug.logError(e2, "Could not rollback transaction: " + e2.toString(), "FindGeneric.groovy");
             }
             // after rolling back, rethrow the exception
             throw e;