*/ class Mage_Dataflow_Model_Convert_Exception extends Varien_Exception { const NOTICE = 'NOTICE'; const WARNING = 'WARNING'; const ERROR = 'ERROR'; const FATAL = 'FATAL'; protected $_container; protected $_level; protected $_position; public function setContainer($container) { $this->_container = $container; return $this; } public function getContainer() { return $this->_container; } public function getLevel() { return $this->_level; } public function setLevel($level) { $this->_level = $level; return $this; } public function getPosition() { return $this->_position; } public function setPosition($position) { $this->_position = $position; return $this; } }