Files
emmymayo 7269c99357 init
2025-02-05 23:15:46 +01:00

19 lines
299 B
PHP

<?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 {
}