WC_Data_Exception::__construct()publicWC 1.0

Setup exception.

Method of the class: WC_Data_Exception{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Data_Exception = new WC_Data_Exception();
$WC_Data_Exception->__construct( $code, $message, $http_status_code, $data );
$code(string) (required)
Machine-readable error code, e.g woocommerce_invalid_product_id.
$message(string) (required)
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.
Default: 400
$data(array)
Extra error data.
Default: array()

WC_Data_Exception::__construct() code WC 8.7.0

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

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