diff options
Diffstat (limited to 'src/Exceptions/NotFoundException.php')
| -rw-r--r-- | src/Exceptions/NotFoundException.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Exceptions/NotFoundException.php b/src/Exceptions/NotFoundException.php new file mode 100644 index 0000000..306ba15 --- /dev/null +++ b/src/Exceptions/NotFoundException.php @@ -0,0 +1,12 @@ +<?php + +declare(strict_types=1); + +namespace Lightscale\Router\Exceptions; + +use RuntimeException; + +class NotFoundException extends RuntimeException +{ + protected $message = 'Could not find request route'; +} |
