Files

18 lines
302 B
PHP
Raw Permalink Normal View History

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