18 lines
325 B
PHP
18 lines
325 B
PHP
<?php
|
|
/**
|
|
* Class Rest_Request_Exception
|
|
*
|
|
* @package WooCommerce\Payments
|
|
*/
|
|
|
|
namespace WCPay\Exceptions;
|
|
|
|
use Exception;
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
/**
|
|
* Exception for throwing errors in REST API controllers (e.g. issues with missing parameters in requests).
|
|
*/
|
|
class Rest_Request_Exception extends Exception {}
|