summaryrefslogtreecommitdiff
path: root/src/Exceptions/NotFoundException.php
blob: 306ba159b789e792b2803bdd311c955efcf770ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

declare(strict_types=1);

namespace Lightscale\Router\Exceptions;

use RuntimeException;

class NotFoundException extends RuntimeException
{
    protected $message = 'Could not find request route';
}