* @param errors the validation errors object associated to the ActionBean
*/
protected void handlePropertyBindingError(ActionBean bean, ParameterName name,
List<Object> values, Exception e, ValidationErrors errors) {
if (e instanceof NoSuchPropertyException) {
NoSuchPropertyException nspe = (NoSuchPropertyException) e;
// No stack trace if it's a no such property exception
log.debug("Could not bind property with name [", name, "] to bean of type: ", bean
.getClass().getSimpleName(), " : ", nspe.getMessage());
}
else {
log.debug(e, "Could not bind property with name [", name, "] to bean of type: ", bean
.getClass().getSimpleName());
}