Your IP : 216.73.216.212


Current Path : /home/a/t/a/ataenra/www4/libraries/vendor/jfcherng/php-diff/src/Exception/
Upload File :
Current File : /home/a/t/a/ataenra/www4/libraries/vendor/jfcherng/php-diff/src/Exception/FileNotFoundException.php

<?php

declare(strict_types=1);

namespace Jfcherng\Diff\Exception;

final class FileNotFoundException extends \Exception
{
    public function __construct(string $filepath = '', int $code = 0, ?\Throwable $previous = null)
    {
        parent::__construct("File not found: {$filepath}", $code, $previous);
    }
}