1
0
mirror of synced 2024-12-15 23:56:02 +03:00
doctrine2/website/plugins/sfDoctrinePlugin/lib/sfDoctrineException.class.php

30 lines
778 B
PHP
Raw Normal View History

2007-09-13 01:56:14 +04:00
<?php
/*
* This file is part of the sfDoctrine package.
* (c) 2006 Olivier Verdier <Olivier.Verdier@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* @package symfony.plugins
* @subpackage sfDoctrine
* @author Olivier Verdier <Olivier.Verdier@gmail.com>
* @version SVN: $Id: sfDoctrineException.class.php 2675 2006-11-14 07:00:59Z chtito $
*/
class sfDoctrineException extends sfException
{
/**
* Class constructor.
*
* @param string The error message.
* @param int The error code.
*/
public function __construct ($message = null, $code = 0)
{
$this->setName('sfDoctrineException');
parent::__construct($message, $code);
}
}