| 1 |
<?php |
| 2 |
/** |
| 3 |
* Thrown when a blocking lock is unable to acquire its |
| 4 |
* lock within the timeout. |
| 5 |
* |
| 6 |
* @package SolidWP\Performance |
| 7 |
*/ |
| 8 |
|
| 9 |
declare( strict_types=1 ); |
| 10 |
|
| 11 |
namespace SolidWP\Performance\Lock\Exceptions; |
| 12 |
|
| 13 |
use RuntimeException; |
| 14 |
|
| 15 |
/** |
| 16 |
* Thrown when a blocking lock is unable to acquire its |
| 17 |
* lock within the timeout. |
| 18 |
* |
| 19 |
* @package SolidWP\Performance |
| 20 |
*/ |
| 21 |
final class LockTimeoutException extends RuntimeException { |
| 22 |
|
| 23 |
} |
| 24 |
|