1234567891011121314151617181920212223 |
- <?php
- /*
- * This file is part of the symfony package.
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- * (c) Jonathan H. Wage <jonwage@gmail.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- /**
- * sfDoctrine exception class
- *
- * @package symfony
- * @subpackage doctrine
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- * @author Jonathan H. Wage <jonwage@gmail.com>
- * @version SVN: $Id: sfDoctrineException.class.php 11629 2008-09-17 22:22:25Z Jonathan.Wage $
- */
- class sfDoctrineException extends sfException
- {
- }
|