OXID eShop CE  4.10.7
 All Classes Namespaces Files Functions Variables Pages
oxlanguageexception.php
Go to the documentation of this file.
1 <?php
2 
9 {
10 
16  private $_sLangConstant = "";
17 
23  public function setLangConstant($sLangConstant)
24  {
25  $this->_sLangConstant = $sLangConstant;
26  }
27 
33  public function getLangConstant()
34  {
35  return $this->_sLangConstant;
36  }
37 
44  public function getString()
45  {
46  return __CLASS__ . '-' . parent::getString() . " Faulty Constant --> " . $this->_sLangConstant . "\n";
47  }
48 
57  public function getValues()
58  {
59  $aRes = parent::getValues();
60  $aRes['langConstant'] = $this->getLangConstant();
61 
62  return $aRes;
63  }
64 }