This repository has been archived on 2026-07-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web/app/Errors/PlaylistNotFoundException.php
T

16 lines
254 B
PHP

<?php
declare(strict_types=1);
namespace App\Errors;
use Exception;
class PlaylistNotFoundException extends Exception
{
public function __construct(string $id)
{
parent::__construct("Плейлист $id не найден!");
}
}