Exception.php 501 Bytes
Newer Older
lsmith's avatar
lsmith committed
1 2 3 4 5 6
<?PHP
/**
 * Locking exception class
 *
 * A loking exception represents an error that occured during a locking process
 * (obtain/release locks).
7
 *
lsmith's avatar
lsmith committed
8
 * @package     Doctrine
9
 * @subpackage  Locking
10
 * @link        www.phpdoctrine.org
lsmith's avatar
lsmith committed
11 12
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @since       1.0
13
 * @version     $Revision: 3882 $
lsmith's avatar
lsmith committed
14 15
 * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
 */
lsmith's avatar
lsmith committed
16 17
class Doctrine_Locking_Exception extends Doctrine_Exception
{}