wiki.techinc.nl/includes/Rest/LocalizedHttpException.php
daniel 272db6afde Replace "@stable for calling" by "@stable to call"
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
2020-07-13 08:55:28 +00:00

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;
}
}