MediaWiki master
LockingException.php
Go to the documentation of this file.
1<?php
2declare( strict_types = 1 );
3
5
6use Exception;
7
11class LockingException extends Exception {
12 public function __construct( string $lockFilePath ) {
13 parent::__construct(
14 "Unable to acquire lock for file at path '" . $lockFilePath . "'"
15 );
16 }
17
18}