For compliance with the new version of the table interface policy (T255803). This patch was created by an automated search & replace operation on the includes/ directory. Bug: T257789 Change-Id: If560596f5e1e0a3da91afc36e656e7c27f040968
30 lines
611 B
PHP
30 lines
611 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Rest;
|
|
|
|
use Wikimedia\Message\MessageValue;
|
|
|
|
/**
|
|
* @newable
|
|
*/
|
|
class LocalizedHttpException extends HttpException {
|
|
private $messageValue;
|
|
|
|
/**
|
|
* @stable to call
|
|
*
|
|
* @param MessageValue $messageValue
|
|
* @param int $code
|
|
* @param array|null $errorData
|
|
*/
|
|
public function __construct( MessageValue $messageValue, $code = 500, $errorData = null ) {
|
|
parent::__construct(
|
|
'Localized exception with key ' . $messageValue->getKey(), $code, $errorData
|
|
);
|
|
$this->messageValue = $messageValue;
|
|
}
|
|
|
|
public function getMessageValue() {
|
|
return $this->messageValue;
|
|
}
|
|
}
|