aboutsummaryrefslogtreecommitdiff
path: root/lib/trails/Exceptions/UnknownController.php
blob: 420c2388e62e99c4a33c775ac56f7ed90a05705b (plain)
1
2
3
4
5
6
7
8
9
10
<?php
namespace Trails\Exceptions;

class UnknownController extends \Trails\Exception
{
    public function __construct(string $message)
    {
        parent::__construct(404, $message);
    }
}