Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
vendor
/
jfcherng
/
php-diff
/
src
/
Exception
:
FileNotFoundException.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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); } }