This commit is contained in:
2026-01-01 21:10:46 +08:00
parent 5c1b19c08a
commit 6c31ffa120
26 changed files with 1171 additions and 209 deletions

View File

@@ -0,0 +1,21 @@
<?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 PlaylistNotFoundException extends Exception
{
public function __construct(string $code)
{
parent::__construct("Плейлист '{$code}' не найден");
}
}