for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SimpleRoute\Exception;
final class NotFoundException extends \Exception
{
/**
* @param string $uri
*/
public function __construct($uri)
parent::__construct('No route found for URI: ' . $uri);
}