oxobjectexception.php

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