Files
php_assessment_2/wp-content/plugins/woocommerce-payments/includes/multi-currency/Exceptions/InvalidCurrencyRateException.php
T

18 lines
315 B
PHP
Raw Normal View History

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