AzuraCast/src/Exception/PodcastMediaNotFoundExcepti...

22 lines
450 B
PHP

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