mautic / app /bundles /LeadBundle /Deduplicate /Exception /ValueNotMergeableException.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
namespace Mautic\LeadBundle\Deduplicate\Exception;
class ValueNotMergeableException extends \Exception
{
/**
* @param mixed $newerValue
* @param mixed $olderValue
*/
public function __construct(
private $newerValue,
private $olderValue
) {
parent::__construct();
}
/**
* @return mixed
*/
public function getNewerValue()
{
return $this->newerValue;
}
/**
* @return mixed
*/
public function getOlderValue()
{
return $this->olderValue;
}
}