PluginProbe
Solid Performance – Your No-Code Caching, Performance, & Page Speed Solution / trunk
Solid Performance – Your No-Code Caching, Performance, & Page Speed Solution vtrunk
2.0.1 trunk 1.0.0 1.1.0 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 1.4.2 1.5.0 1.6.0 1.6.1 1.7.0 1.7.1 1.8.0 1.9.0 2.0.0
solid-performance / src / Performance / Lock / Exceptions / LockTimeoutException.php
src/Performance/Lock/Exceptions
LockTimeoutException.php 423 B 1 year ago

LockTimeoutException.php in Solid Performance – Your No-Code Caching, Performance, & Page Speed Solution trunk, at src/Performance/Lock/Exceptions/LockTimeoutException.php

24 lines 423 B Raw Download Zip
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