for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Remorhaz\UCD\Tool\Exception;
use LogicException;
use Throwable;
final class RangeSetAlreadyExistsException extends LogicException implements ExceptionInterface
{
/**
* @var string
*/
private $propertyName;
public function __construct(string $propertyName, Throwable $previous = null)
$this->propertyName = $propertyName;
parent::__construct("Property '{$this->propertyName}' already exists", 0, $previous);
}