00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 class Varien_Convert_Exception extends Varien_Exception
00036 {
00037 const NOTICE = 'NOTICE';
00038 const WARNING = 'WARNING';
00039 const ERROR = 'ERROR';
00040 const FATAL = 'FATAL';
00041
00042 protected $_container;
00043
00044 protected $_level;
00045
00046 protected $_position;
00047
00048 public function setContainer($container)
00049 {
00050 $this->_container = $container;
00051 return $this;
00052 }
00053
00054 public function getContainer()
00055 {
00056 return $this->_container;
00057 }
00058
00059 public function getLevel()
00060 {
00061 return $this->_level;
00062 }
00063
00064 public function setLevel($level)
00065 {
00066 $this->_level = $level;
00067 return $this;
00068 }
00069
00070 public function getPosition()
00071 {
00072 return $this->_position;
00073 }
00074
00075 public function setPosition($position)
00076 {
00077 $this->_position = $position;
00078 return $this;
00079 }
00080 }