Files
newznab-tmux/app/Exceptions/NzbUploadException.php
2026-07-14 16:49:15 +02:00

16 lines
272 B
PHP

<?php
declare(strict_types=1);
namespace App\Exceptions;
use RuntimeException;
final class NzbUploadException extends RuntimeException
{
public function __construct(string $message, public readonly int $status)
{
parent::__construct($message);
}
}