mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
16 lines
272 B
PHP
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);
|
|
}
|
|
}
|