16 lines
254 B
PHP
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 не найден!");
|
|
}
|
|
}
|