Files
rpsls-game/system/Files/Exceptions/FileNotFoundException.php
2019-12-02 14:56:47 -06:00

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]));
}
}