관리-도구
편집 파일: SecretKeyNotAvailableException.php
<?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; } }