12 lines
301 B
PHP
12 lines
301 B
PHP
<?php namespace CodeIgniter\Files\Exceptions;
|
|
|
|
use CodeIgniter\Exceptions\ExceptionInterface;
|
|
|
|
class FileNotFoundException extends \RuntimeException implements ExceptionInterface
|
|
{
|
|
public static function forFileNotFound(string $path)
|
|
{
|
|
return new static(lang('Files.fileNotFound', [$path]));
|
|
}
|
|
}
|