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