You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
|
|
namespace WCML\Rest\Exceptions;
|
|
|
|
use WC_REST_Exception;
|
|
|
|
class Generic extends WC_REST_Exception {
|
|
|
|
/**
|
|
* @param string $text
|
|
*/
|
|
public function __construct( $text ) {
|
|
parent::__construct( 422, $text, 422 );
|
|
}
|
|
|
|
} |