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