• File: Generic.php
  • Full Path: /home/lef/public_html/wp-content/plugins/woocommerce-multilingual/classes/Rest/Exceptions/Generic.php
  • File size: 228 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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 );
	}

}