for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\Form\Exception;
final class PropertyNotSupportNestedValuesException extends ValueNotFoundException
{
public function __construct(string $property)
parent::__construct('Property "' . $property . '" is not a nested attribute.');
}