File "AmountMismatchException.php"

Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/src/Integrations/Stripe/Api/Webhooks/Exceptions/AmountMismatchException.php
File size: 400 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace WPForms\Integrations\Stripe\Api\Webhooks\Exceptions;

use Exception;

/**
 * Class AmountMismatchException.
 *
 * @since 1.9.7
 */
class AmountMismatchException extends Exception {

	/**
	 * AmountMismatchException constructor.
	 *
	 * @since 1.9.7
	 *
	 * @param string $message Message.
	 */
	public function __construct( $message ) {

		parent::__construct( $message, 202 );
	}
}