1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
<?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
);
}
}
|