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