blob: 9a9ed8fb2a5473aab078c0dbdf5ec988a875a3ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?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);
}
}
|