File: /home/mirz4654/.trash/vibes/includes/libraries/lock/exception/LockAcquireException.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 <[email protected]>
* @link bitcoin:1P5FAZ4QhXCuwYPnLZdk3PJsqePbu1UDDA Donations
* @license WTFPL
*/
class LockAcquireException extends MutexException
{
}