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 MissingLanguage extends WC_REST_Exception {
|
|
|
|
public function __construct() {
|
|
parent::__construct(
|
|
422,
|
|
__( 'Using "translation_of" requires providing a "lang" parameter too', 'woocommerce-multilingual' ),
|
|
422
|
|
);
|
|
}
|
|
|
|
} |