From 0223d7a454da66336cf6d0e83bb03cd117c319bd Mon Sep 17 00:00:00 2001 From: romanb Date: Fri, 12 Sep 2008 13:07:08 +0000 Subject: [PATCH] moved Collection --- lib/Doctrine/ORM/Exceptions/ORMException.php | 24 +++----------------- 1 file changed, 3 insertions(+), 21 deletions(-) diff --git a/lib/Doctrine/ORM/Exceptions/ORMException.php b/lib/Doctrine/ORM/Exceptions/ORMException.php index c90c733fd..e3f43aeba 100644 --- a/lib/Doctrine/ORM/Exceptions/ORMException.php +++ b/lib/Doctrine/ORM/Exceptions/ORMException.php @@ -31,27 +31,9 @@ * @since 1.0 * @version $Revision: 4776 $ * @author Konsta Vesterinen - * @author Roman Borschel - * @todo Rename to DoctrineException + * @author Roman Borschel */ -class Doctrine_ORM_Exceptions_ORMException extends Exception -{ - 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'."); - } +class Doctrine_ORM_Exceptions_ORMException extends Doctrine_Shared_Exceptions_DoctrineException +{ }