presseportale/app/Services/PressRelease/BlacklistViolationException.php
Kevin Adametz 5b8bdf4182
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
12-05-2026 Frontend dev
2026-05-12 18:32:33 +02:00

13 lines
261 B
PHP

<?php
namespace App\Services\PressRelease;
use RuntimeException;
class BlacklistViolationException extends RuntimeException
{
public function __construct(string $message, public readonly string $word)
{
parent::__construct($message);
}
}