16 lines
330 B
PHP
16 lines
330 B
PHP
<?php
|
|
/**
|
|
* WooCommerce Admin Input Parameter Exception Class
|
|
*
|
|
* Exception class thrown when user provides incorrect parameters.
|
|
*
|
|
* @package WooCommerce Admin
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
/**
|
|
* WC_Admin_Reports_Parameter_Exception class.
|
|
*/
|
|
class WC_Admin_Reports_Parameter_Exception extends WC_Data_Exception {}
|