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