Automattic\WooCommerce\Checkout\Helpers

ReserveStockException::__constructpublicWC 1.0

Setup exception.

Метод класса: ReserveStockException{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$ReserveStockException = new ReserveStockException();
$ReserveStockException->__construct( $code, $message, $http_status_code, $data );
$code(строка) (обязательный)
Machine-readable error code, e.g woocommerce_invalid_product_id.
$message(строка) (обязательный)
User-friendly translated error message, e.g. 'Product ID is invalid'.
$http_status_code(int)
Proper HTTP status code to respond with, e.g. 400.
По умолчанию: 400
$data(массив)
Extra error data.
По умолчанию: array()

Код ReserveStockException::__construct() WC 9.9.3

public function __construct( $code, $message, $http_status_code = 400, $data = array() ) {
	$this->error_code = $code;
	$this->error_data = $data;

	parent::__construct( $message, $http_status_code );
}