Author: romanb
Date: 2008-09-12 14:07:08 +0100 (Fri, 12 Sep 2008)
New Revision: 4945
Modified:
trunk/lib/Doctrine/ORM/Exceptions/ORMException.php
Log:
moved Collection
Modified: trunk/lib/Doctrine/ORM/Exceptions/ORMException.php
===================================================================
--- trunk/lib/Doctrine/ORM/Exceptions/ORMException.php 2008-09-12 12:34:46 UTC
(rev 4944)
+++ trunk/lib/Doctrine/ORM/Exceptions/ORMException.php 2008-09-12 13:07:08 UTC
(rev 4945)
@@ -31,27 +31,9 @@
* @since 1.0
* @version $Revision: 4776 $
* @author Konsta Vesterinen <[EMAIL PROTECTED]>
- * @author Roman Borschel <[EMAIL PROTECTED]>
- * @todo Rename to DoctrineException
+ * @author Roman Borschel <[EMAIL PROTECTED]>
*/
-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
+{
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"doctrine-svn" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.co.uk/group/doctrine-svn?hl=en-GB
-~----------~----~----~----~------~----~------~--~---