JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "ObjectBuildersCollision.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/cuyz/valinor/src/Mapper/Object/Exception/ObjectBuildersCollision.php
File size: 496 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
declare(strict_types=1);
namespace CuyZ\Valinor\Mapper\Object\Exception;
use CuyZ\Valinor\Mapper\Object\ObjectBuilder;
use RuntimeException;
/** @internal */
final class ObjectBuildersCollision extends RuntimeException
{
public function __construct(ObjectBuilder $builderA, ObjectBuilder $builderB)
{
parent::__construct(
"A type collision was detected between the constructors `{$builderA->signature()}` and `{$builderB->signature()}`.",
);
}
}