1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php /** * WooCommerce Admin Input Parameter Exception Class * * Exception class thrown when user provides incorrect parameters. */
namespace Automattic\WooCommerce\Admin\API\Reports;
defined( 'ABSPATH' ) || exit;
/** * API\Reports\ParameterException class. */ class ParameterException extends \WC_Data_Exception {}
|