OXID eShop CE  4.9.6
 All Classes Files Functions Variables Pages
oxobjectexception.php
Go to the documentation of this file.
1 <?php
2 
10 {
11 
17  private $_oObject;
18 
24  public function setObject($oObject)
25  {
26  $this->_oObject = $oObject;
27  }
28 
34  public function getObject()
35  {
36  return $this->_oObject;
37  }
38 
45  public function getString()
46  {
47  return __CLASS__ . '-' . parent::getString() . " Faulty Object --> " . get_class($this->_oObject) . "\n";
48  }
49 }