2019-05-09 01:36:18 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace MediaWiki\Rest;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This is the base exception class for non-fatal exceptions thrown from REST
|
|
|
|
|
* handlers. The exception is not logged, it is merely converted to an
|
|
|
|
|
* error response.
|
|
|
|
|
*/
|
|
|
|
|
class HttpException extends \Exception {
|
2019-06-12 19:51:59 +00:00
|
|
|
|
|
|
|
|
/** @var array|null */
|
|
|
|
|
private $errorData = null;
|
|
|
|
|
|
|
|
|
|
public function __construct( $message, $code = 500, $errorData = null ) {
|
2019-05-09 01:36:18 +00:00
|
|
|
parent::__construct( $message, $code );
|
2019-06-12 19:51:59 +00:00
|
|
|
$this->errorData = $errorData;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return array|null
|
|
|
|
|
*/
|
|
|
|
|
public function getErrorData() {
|
|
|
|
|
return $this->errorData;
|
2019-05-09 01:36:18 +00:00
|
|
|
}
|
|
|
|
|
}
|