1
0
mirror of synced 2025-03-01 18:33:21 +03:00

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 {}
?>