13 lines
261 B
PHP
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);
|
|
}
|
|
}
|