/**
  * Added exception handling to addItem, otherwise in some cases will throw an exception
  * 
  * @param \Varien_Object $object
  */
 public function addItem(\Varien_Object $object)
 {
     try {
         return parent::addItem($object);
     } catch (Exception $e) {
     }
 }