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