* SPDX-License-Identifier: MIT */ declare(strict_types=1); namespace Respect\Validation\Exceptions; use function sprintf; final class InvalidRuleConstructorException extends ComponentException implements Exception { public function __construct(string $message, mixed ...$arguments) { parent::__construct(sprintf($message, ...$arguments)); } }