Files
php_assessment_2/wp-content/plugins/woocommerce-payments/includes/exceptions/class-invalid-webhook-data-exception.php
T

19 lines
299 B
PHP
Raw Normal View History

2025-02-05 23:15:46 +01:00
<?php
/**
* Class Invalid_Webhook_Data_Exception
*
* @package WooCommerce\Payments
*/
namespace WCPay\Exceptions;
use Exception;
defined( 'ABSPATH' ) || exit;
/**
* Exception for throwing an error when webhook data is invalid.
*/
class Invalid_Webhook_Data_Exception extends Exception {
}