JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "FileCouldNotBeRead.php"

Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/lcobucci/jwt/src/Signer/Key/FileCouldNotBeRead.php
File size: 513 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare(strict_types=1);

namespace Lcobucci\JWT\Signer\Key;

use InvalidArgumentException;
use Lcobucci\JWT\Exception;
use Throwable;

final class FileCouldNotBeRead extends InvalidArgumentException implements Exception
{
    /** @param non-empty-string $path */
    public static function onPath(string $path, ?Throwable $cause = null): self
    {
        return new self(
            message: 'The path "' . $path . '" does not contain a valid key file',
            previous: $cause,
        );
    }
}