for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ParcelValue\Api\Exceptions;
class JwtException extends ApiException
{
public function __construct(string $message, ?\Throwable $previous = null)
parent::__construct($message, $previous);
}