File "SignatureVerificationException.php"

Full Path: /home/cananyalcin/public_html/core/lib/coinbase/coinbase-commerce/src/Exceptions/SignatureVerificationException.php
File size: 342 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace CoinbaseCommerce\Exceptions;

class SignatureVerificationException extends CoinbaseException
{
    public function __construct($signature, $payload)
    {
        $message = sprintf('No signatures found matching the expected signature %s for payload %s', $signature, $payload);

        parent::__construct($message);
    }
}