Atlas/src/Exception/RouteNotFoundException.php

12 lines
191 B
PHP
Raw Normal View History

<?php
namespace Atlas\Exception;
/**
* Exception thrown when a requested route is not found.
*
* @extends \RuntimeException
*/
class RouteNotFoundException extends \RuntimeException
{
}