Files
2026-04-28 15:13:50 +02:00

18 lines
302 B
PHP

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