Implicitly marking parameter $... as nullable is deprecated in php8.4, the explicit nullable type must be used instead Created with autofix from Ide15839e98a6229c22584d1c1c88c690982e1d7a Break one long line in SpecialPage.php Bug: T376276 Change-Id: I807257b2ba1ab2744ab74d9572c9c3d3ac2a968e
33 lines
1,007 B
PHP
33 lines
1,007 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Settings;
|
|
|
|
use RuntimeException;
|
|
use Throwable;
|
|
use Wikimedia\NormalizedException\INormalizedException;
|
|
use Wikimedia\NormalizedException\NormalizedExceptionTrait;
|
|
|
|
class SettingsBuilderException extends RuntimeException implements INormalizedException {
|
|
use NormalizedExceptionTrait;
|
|
|
|
/**
|
|
* @param string $normalizedMessage The exception message, with PSR-3 style placeholders.
|
|
* @param array $messageContext Message context, with values for the placeholders.
|
|
* @param int $code The exception code.
|
|
* @param Throwable|null $previous The previous throwable used for the exception chaining.
|
|
*/
|
|
public function __construct(
|
|
string $normalizedMessage = '',
|
|
array $messageContext = [],
|
|
int $code = 0,
|
|
?Throwable $previous = null
|
|
) {
|
|
$this->normalizedMessage = $normalizedMessage;
|
|
$this->messageContext = $messageContext;
|
|
parent::__construct(
|
|
self::getMessageFromNormalizedMessage( $normalizedMessage, $messageContext ),
|
|
$code,
|
|
$previous
|
|
);
|
|
}
|
|
}
|