Initial commit.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
<?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 {}
|
||||
@@ -0,0 +1,17 @@
|
||||
<?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 {}
|
||||
Reference in New Issue
Block a user