for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Everlution\Navigation\Registry;
/**
* Class ProviderDoesNotExist.
* @author Ivan Barlog <[email protected]>
*/
class ProviderDoesNotExist extends \Exception
{
public function __construct(string $identifier)
parent::__construct(
sprintf("There is no NavigationProvider which can handle '%s' registered.", $identifier)
);
}