11 lines
218 B
PHP
11 lines
218 B
PHP
|
<?PHP
|
||
|
|
||
|
/**
|
||
|
* Locking exception class
|
||
|
*
|
||
|
* A loking exception represents an error that occured during a locking process
|
||
|
* (obtain/release locks).
|
||
|
*/
|
||
|
class Doctrine_Locking_Exception extends Doctrine_Exception {}
|
||
|
|
||
|
?>
|