Files
server/core/lib/Service/FirewallRuleConflictException.php
T
2026-08-03 22:27:20 -04:00

16 lines
286 B
PHP

<?php
declare(strict_types=1);
namespace KTXC\Service;
final class FirewallRuleConflictException extends \RuntimeException
{
public function __construct(
public readonly string $conflictCode,
string $message
) {
parent::__construct($message);
}
}