for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Remorhaz\JSON\Path\Processor\Result\Exception;
use LogicException;
use Remorhaz\JSON\Data\Value\ValueInterface;
use Throwable;
final class PathNotFoundInValueException extends LogicException implements ExceptionInterface
{
private $value;
public function __construct(ValueInterface $value, Throwable $previous = null)
$this->value = $value;
parent::__construct("Path not found in value", 0, $previous);
}
public function getValue(): ValueInterface
return $this->value;