Files
web/app/Exceptions/PlaylistWithoutUrlException.php
2026-01-01 21:10:46 +08:00

21 lines
480 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 InvalidArgumentException;
class PlaylistWithoutUrlException extends InvalidArgumentException
{
public function __construct(string $code)
{
parent::__construct("Плейлист '{$code}' имеет неверный url");
}
}