*/ class Mage_Eav_Model_Entity_Attribute_Exception extends Exception { /** * Eav entity attribute * * @var string */ protected $_attributeCode; /** * Eav entity attribute part * attribute|backend|frontend|source * * @var string */ protected $_part; /** * Set Eav entity attribute * * @param string $attribute * @return Mage_Eav_Model_Entity_Attribute_Exception */ public function setAttributeCode($attribute) { $this->_attributeCode = $attribute; return $this; } /** * Set Eav entity attribute type * * @param string $part * @return Mage_Eav_Model_Entity_Attribute_Exception */ public function setPart($part) { $this->_part = $part; return $this; } /** * Retrieve Eav entity attribute * * @return string */ public function getAttributeCode() { return $this->_attributeCode; } /** * Retrieve Eav entity attribute part * * @return string */ public function getPart() { return $this->_part; } }