Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
wp-content
/
plugins
/
wpforms-lite
/
src
/
Integrations
/
Stripe
/
Api
/
Webhooks
/
Exceptions
:
AmountMismatchException.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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 ); } }