18 lines
315 B
PHP
18 lines
315 B
PHP
<?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 {}
|