2026-02-13 21:07:59 +00:00
|
|
|
<?php
|
|
|
|
|
|
2026-02-13 23:26:31 +00:00
|
|
|
namespace Atlas\Exception;
|
2026-02-13 21:07:59 +00:00
|
|
|
|
2026-02-14 04:04:38 +00:00
|
|
|
/**
|
|
|
|
|
* Exception thrown when a requested route is not found.
|
|
|
|
|
*
|
2026-02-14 23:27:25 +00:00
|
|
|
* This may occur during matching if no route corresponds to the request,
|
|
|
|
|
* or during URL generation if the requested route name is not registered.
|
|
|
|
|
*
|
2026-02-14 04:04:38 +00:00
|
|
|
* @extends \RuntimeException
|
|
|
|
|
*/
|
2026-02-13 21:07:59 +00:00
|
|
|
class RouteNotFoundException extends \RuntimeException
|
|
|
|
|
{
|
2026-02-14 23:27:25 +00:00
|
|
|
}
|