You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2009/11/26 02:32:25 UTC

svn commit: r884361 - /ofbiz/trunk/framework/entity/src/org/ofbiz/entity/sql/EntityConditionPlanner.java

Author: doogie
Date: Thu Nov 26 01:32:25 2009
New Revision: 884361

URL: http://svn.apache.org/viewvc?rev=884361&view=rev
Log:
For unimplemented values, show the class name as well.

Modified:
    ofbiz/trunk/framework/entity/src/org/ofbiz/entity/sql/EntityConditionPlanner.java

Modified: ofbiz/trunk/framework/entity/src/org/ofbiz/entity/sql/EntityConditionPlanner.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/sql/EntityConditionPlanner.java?rev=884361&r1=884360&r2=884361&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/sql/EntityConditionPlanner.java (original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/sql/EntityConditionPlanner.java Thu Nov 26 01:32:25 2009
@@ -89,6 +89,6 @@
             }
             return params.get(((ParameterValue) value).getName());
         }
-        throw new UnsupportedOperationException(value.toString());
+        throw new UnsupportedOperationException(value.getClass().getName() + ":" + value.toString());
     }
 }