File "AmountMismatchException.php"
Full Path: /home/stylijtl/public_html/wp-content/plugins/wpforms-lite/src/Integrations/PayPalCommerce/Api/Webhooks/Exceptions/AmountMismatchException.php
File size: 410 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace WPForms\Integrations\PayPalCommerce\Api\Webhooks\Exceptions;
use Exception;
/**
* Class AmountMismatchException.
*
* @since 1.10.0
*/
class AmountMismatchException extends Exception {
/**
* AmountMismatchException constructor.
*
* @since 1.10.0
*
* @param string $message Message.
*/
public function __construct( $message ) {
parent::__construct( $message, 202 );
}
}