AzuraCast/src/Exception/PodcastEpisodeNotFoundExcep...

22 lines
446 B
PHP

<?php
declare(strict_types=1);
namespace App\Exception;
use App\Exception;
use Psr\Log\LogLevel;
use Throwable;
class PodcastEpisodeNotFoundException extends Exception
{
public function __construct(
string $message = 'Episode not found.',
int $code = 0,
Throwable $previous = null,
string $loggerLevel = LogLevel::INFO
) {
parent::__construct($message, $code, $previous, $loggerLevel);
}
}