Automattic\WooCommerce\Blocks\StoreApi\Routes
RouteException::__construct() public WC 1.0
Setup exception.
{} Это метод класса: RouteException{}
Хуков нет.
Возвращает
null
. Null. Ничего.
Использование
$RouteException = new RouteException(); $RouteException->__construct( $error_code, $message, $http_status_code, $additional_data );
- $error_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(число)
- Proper HTTP status code to respond with, e.g. 400.
- $additional_data(массив)
- Extra data (key value pairs) to expose in the error response.
Код RouteException::__construct() RouteException:: construct WC 5.1.0
public function __construct( $error_code, $message, $http_status_code = 400, $additional_data = [] ) {
$this->error_code = $error_code;
$this->additional_data = array_filter( (array) $additional_data );
parent::__construct( $message, $http_status_code );
}