for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Smoren\Schemator\Exceptions;
class PathNotArrayAccessibleException extends PathException
{
/**
* {@inheritDoc}
*/
public function __construct(string $key, array $path, string $pathDelimiter)
parent::__construct($key, $path, $pathDelimiter);
$this->message = "Value by key '{$this->key}' is not array accessible on path '{$this->getPathString()}'";
}