| 1 |
<?php |
| 2 |
|
| 3 |
declare(strict_types=1); |
| 4 |
|
| 5 |
namespace malkusch\lock\exception; |
| 6 |
|
| 7 |
/** |
| 8 |
* Lock acquire exception. |
| 9 |
* |
| 10 |
* Used when the lock could not be acquired. This exception implies that the |
| 11 |
* critical code was not executed, or at least had no side effects. |
| 12 |
* |
| 13 |
* @author Markus Malkusch <markus@malkusch.de> |
| 14 |
* @link bitcoin:1P5FAZ4QhXCuwYPnLZdk3PJsqePbu1UDDA Donations |
| 15 |
* @license WTFPL |
| 16 |
*/ |
| 17 |
class LockAcquireException extends MutexException |
| 18 |
{ |
| 19 |
} |
| 20 |
|