D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
psa
/
admin
/
plib
/
modules
/
grafana
/
vendor
/
lcobucci
/
jwt
/
src
/
Signer
/
Filename :
CannotSignPayload.php
back
Copy
<?php declare (strict_types=1); namespace PleskGrafana\Lcobucci\JWT\Signer; use InvalidArgumentException; use PleskGrafana\Lcobucci\JWT\Exception; final class CannotSignPayload extends InvalidArgumentException implements Exception { public static function errorHappened(string $error) : self { return new self('There was an error while creating the signature:' . $error); } }