for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Everlution\Navigation\Nested\Container;
/**
* Class ContainerNotFoundException
* @author Martin Lutter <[email protected]>
*/
class ContainerNotFoundException extends \Exception
{
public function __construct(string $name)
parent::__construct("$name container was not found");
}