oxobjectexception.php

Go to the documentation of this file.
00001 <?php
00002 
00009 class oxObjectException extends oxException
00010 {
00016     private $_oObject;
00017 
00025     public function setObject( $oObject )
00026     {
00027         $this->_oObject = $oObject;
00028     }
00029 
00035     public function getObject()
00036     {
00037         return $this->_oObject;
00038     }
00039 
00046     public function getString()
00047     {
00048         return __CLASS__.'-'.parent::getString()." Faulty Object --> ".get_class($this->_oObject)."\n";
00049     }
00050 }