for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Umbrellio\LTree\Exceptions;
use LogicException;
class LTreeUndefinedNodeException extends LogicException
{
public function __construct($id)
parent::__construct("There is no node with id '${id}'");
}