17 lines
302 B
PHP
17 lines
302 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Class New_Process_Payment_Exception
|
||
|
|
*
|
||
|
|
* @package WooCommerce\Payments
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace WCPay\Exceptions;
|
||
|
|
|
||
|
|
defined( 'ABSPATH' ) || exit;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Exception for throwing an error when failed on processing payment.
|
||
|
|
*/
|
||
|
|
class New_Process_Payment_Exception extends Process_Payment_Exception {
|
||
|
|
}
|