21 lines
430 B
PHP
21 lines
430 B
PHP
<?php
|
|
/*
|
|
* Copyright (c) 2025, Антон Аксенов
|
|
* This file is part of m3u.su project
|
|
* MIT License: https://git.axenov.dev/IPTV/web/src/branch/master/LICENSE
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Exceptions;
|
|
|
|
use Exception;
|
|
|
|
class FileNotFoundException extends Exception
|
|
{
|
|
public function __construct(string $filepath)
|
|
{
|
|
parent::__construct('Файл не найден: ' . $filepath);
|
|
}
|
|
}
|