# decalog/4.4.0/includes/libraries/lock/exception/LockAcquireException.php

DecaLog, version 4.4.0. 20 lines.

- Page: https://pluginprobe.com/plugins/decalog/4.4.0/code/includes/libraries/lock/exception/LockAcquireException.php
- Raw: https://pluginprobe.com/plugins/decalog/4.4.0/raw/includes/libraries/lock/exception/LockAcquireException.php
- Modified: 2020-09-30T17:31:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/decalog/4.4.0/code/includes/libraries/lock/exception/LockAcquireException.php#L10-L20`.

```php
<?php

declare(strict_types=1);

namespace malkusch\lock\exception;

/**
 * Lock acquire exception.
 *
 * Used when the lock could not be acquired. This exception implies that the
 * critical code was not executed, or at least had no side effects.
 *
 * @author Markus Malkusch <markus@malkusch.de>
 * @link bitcoin:1P5FAZ4QhXCuwYPnLZdk3PJsqePbu1UDDA Donations
 * @license WTFPL
 */
class LockAcquireException extends MutexException
{
}

```
