File "LockAcquireException.php"
Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/vibes/includes/libraries/lock/exception/LockAcquireException.php
File
size: 437 B (437 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?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
{
}