AzuraCast/src/Exception/PodcastNotFoundException.php

22 lines
439 B
PHP

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