OXID eShop CE  4.9.7
 All Classes Files Functions Variables Pages
oxlanguageexception.php
Go to the documentation of this file.
1 <?php
2 
7 {
8 
14  private $_sLangConstant = "";
15 
21  public function setLangConstant($sLangConstant)
22  {
23  $this->_sLangConstant = $sLangConstant;
24  }
25 
31  public function getLangConstant()
32  {
33  return $this->_sLangConstant;
34  }
35 
42  public function getString()
43  {
44  return __CLASS__ . '-' . parent::getString() . " Faulty Constant --> " . $this->_sLangConstant . "\n";
45  }
46 
55  public function getValues()
56  {
57  $aRes = parent::getValues();
58  $aRes['langConstant'] = $this->getLangConstant();
59 
60  return $aRes;
61  }
62 }