OXID eShop CE  4.8.12
 All Classes Files Functions Variables Pages
oxsystemcomponentexception.php
Go to the documentation of this file.
1 <?php
2 
11 {
17  private $_sComponent;
18 
26  public function setComponent( $sComponent )
27  {
28  $this->_sComponent = $sComponent;
29  }
30 
36  public function getComponent()
37  {
38  return $this->_sComponent;
39  }
40 
47  public function getString()
48  {
49  return __CLASS__.'-'.parent::getString()." Faulty component --> ".$this->_sComponent;
50  }
51 
60  public function getValues()
61  {
62  $aRes = parent::getValues();
63  $aRes['component'] = $this->getComponent();
64  return $aRes;
65  }
66 }