1
0
mirror of synced 2025-01-18 14:31:40 +03:00

moved Collection

This commit is contained in:
romanb 2008-09-12 13:07:08 +00:00
parent 34c830e309
commit 0223d7a454

View File

@ -32,26 +32,8 @@
* @version $Revision: 4776 $
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Roman Borschel <roman@code-factory.org>
* @todo Rename to DoctrineException
*/
class Doctrine_ORM_Exceptions_ORMException extends Exception
class Doctrine_ORM_Exceptions_ORMException extends Doctrine_Shared_Exceptions_DoctrineException
{
private $_innerException;
public function __construct($message = "", Exception $innerException = null)
{
parent::__construct($message);
$this->_innerException = $innerException;
}
public function getInnerException()
{
return $this->_innerException;
}
public static function notYetImplemented($method, $class)
{
return new self("The method '$method' is not implemented in the class '$class'.");
}
}