D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
Sdk
/
Webhooks
/
Filename :
SignatureValidationException.php
back
Copy
<?php namespace App\Libs\Sdk\Webhooks; use Exception; use RuntimeException; /** * Class SignatureValidationException * * @package OnlinePayments\Sdk\Webhooks */ class SignatureValidationException extends RuntimeException { /** * @param string|null $message * @param Exception|null $previous */ public function __construct($message = null, $previous = null) { parent::__construct($message, 0, $previous); } }