for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Piface\Router\Exception;
use Piface\Router\Exception;
class RouteNotFoundException extends Exception
{
public function __construct(string $name)
$message = sprintf("No route found for name : '%s'.", $name);
parent::__construct($message);
}