namespace Automattic\WooCommerce\StoreApi\Exceptions;
* InvalidStockLevelsInCartException class.
* This exception is thrown if any items are out of stock after each product on a draft order has been stock checked.
class InvalidStockLevelsInCartException extends \Exception {
public $additional_data = [];
* All errors to display to the user.
* @param string $error_code Machine-readable error code, e.g `woocommerce_invalid_product_id`.
* @param WP_Error $error The WP_Error object containing all errors relating to stock availability.
* @param array $additional_data Extra data (key value pairs) to expose in the error response.
public function __construct( $error_code, $error, $additional_data = [] ) {
$this->error_code = $error_code;
$this->additional_data = array_filter( (array) $additional_data );
parent::__construct( '', 409 );
* Returns the error code.
public function getErrorCode() {
return $this->error_code;
* Returns the list of messages.
public function getError() {
* Returns additional error data.
public function getAdditionalData() {
return $this->additional_data;