OXID eShop CE  4.8.12
 All Classes Files Functions Variables Pages
oxfileexception.php
Go to the documentation of this file.
1 <?php
2 
9 {
15  protected $_sErrFileName;
16 
22  protected $_sFileError;
23 
31  public function setFileName($sFileName)
32  {
33  $this->_sErrFileName = $sFileName;
34  }
35 
41  public function getFileName()
42  {
43  return $this->_sErrFileName;
44  }
45 
53  public function setFileError($sFileError)
54  {
55  $this->_sFileError = $sFileError;
56  }
57 
63  public function getFileError()
64  {
65  return $this->_sFileError;
66  }
67 
74  public function getString()
75  {
76  return __CLASS__.'-'.parent::getString()." Faulty File --> ".$this->_sErrFileName."\n". "Error Code --> ".$this->_sFileError;
77  }
78 
84  public function getValues()
85  {
86  $aRes = parent::getValues();
87  $aRes['fileName'] = $this->getFileName();
88  return $aRes;
89  }
90 }