for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* SocialConnect project
* @author: Patsura Dmitry https://github.com/ovr <[email protected]>
* @author Alexander Fedyashov <[email protected]>
*/
declare(strict_types=1);
namespace SocialConnect\OpenIDConnect\Exception;
use Throwable;
class InvalidJWT extends \SocialConnect\Common\Exception
{
public function __construct($message = 'Not Valid JWT', $code = 0, ?Throwable $previous = null)
parent::__construct($message, $code, $previous);
}