# solid-performance/1.5.0/src/Performance/Lock/Exceptions/LockTimeoutException.php

Solid Performance – Your No-Code Caching, Performance, &amp; Page Speed Solution, version 1.5.0. 24 lines.

- Page: https://pluginprobe.com/plugins/solid-performance/1.5.0/code/src/Performance/Lock/Exceptions/LockTimeoutException.php
- Raw: https://pluginprobe.com/plugins/solid-performance/1.5.0/raw/src/Performance/Lock/Exceptions/LockTimeoutException.php
- Modified: 2025-02-13T01:04:32+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/solid-performance/1.5.0/code/src/Performance/Lock/Exceptions/LockTimeoutException.php#L10-L20`.

```php
<?php
/**
 * Thrown when a blocking lock is unable to acquire its
 * lock within the timeout.
 *
 * @package SolidWP\Performance
 */

declare( strict_types=1 );

namespace SolidWP\Performance\Lock\Exceptions;

use RuntimeException;

/**
 * Thrown when a blocking lock is unable to acquire its
 * lock within the timeout.
 *
 * @package SolidWP\Performance
 */
final class LockTimeoutException extends RuntimeException {

}

```
