From 598cdb5e0121ecb354d43ef4571f4d40903f1d34 Mon Sep 17 00:00:00 2001 From: zYne Date: Sun, 20 May 2007 21:46:46 +0000 Subject: [PATCH] added adapter exception class --- lib/Doctrine/Adapter/Exception.php | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 lib/Doctrine/Adapter/Exception.php diff --git a/lib/Doctrine/Adapter/Exception.php b/lib/Doctrine/Adapter/Exception.php new file mode 100644 index 000000000..b6d4b157f --- /dev/null +++ b/lib/Doctrine/Adapter/Exception.php @@ -0,0 +1,34 @@ +. + */ +Doctrine::autoload('Doctrine_Exception'); +/** + * Doctrine_Adapter_Exception + * + * @package Doctrine + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision$ + * @author Konsta Vesterinen + */ +class Doctrine_Adapter_Exception extends Doctrine_Exception +{ }