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.
|
2020-06-29 12:13:29 +00:00
|
|
|
*
|
|
|
|
|
* @newable
|
2019-05-09 01:36:18 +00:00
|
|
|
*/
|
|
|
|
|
class HttpException extends \Exception {
|
2019-06-12 19:51:59 +00:00
|
|
|
|
2023-01-21 20:31:09 +00:00
|
|
|
/** @var array */
|
|
|
|
|
private array $errorData;
|
2019-06-12 19:51:59 +00:00
|
|
|
|
2020-06-29 12:13:29 +00:00
|
|
|
/**
|
2020-07-13 08:53:06 +00:00
|
|
|
* @stable to call
|
2020-06-29 12:13:29 +00:00
|
|
|
*
|
|
|
|
|
* @param string $message
|
|
|
|
|
* @param int $code
|
2023-01-21 20:31:09 +00:00
|
|
|
* @param array $errorData
|
2020-06-29 12:13:29 +00:00
|
|
|
*/
|
2023-01-21 20:31:09 +00:00
|
|
|
public function __construct( $message, $code = 500, $errorData = [] ) {
|
2019-05-09 01:36:18 +00:00
|
|
|
parent::__construct( $message, $code );
|
2019-06-12 19:51:59 +00:00
|
|
|
$this->errorData = $errorData;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2023-01-21 20:31:09 +00:00
|
|
|
* @return array
|
2019-06-12 19:51:59 +00:00
|
|
|
*/
|
2023-01-21 20:31:09 +00:00
|
|
|
public function getErrorData(): array {
|
2019-06-12 19:51:59 +00:00
|
|
|
return $this->errorData;
|
2019-05-09 01:36:18 +00:00
|
|
|
}
|
|
|
|
|
}
|