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

class SessionRequiredException extends \Trails\Exception
{
    public function __construct()
    {
        $message = 'Tried to access a non existing session.';
        parent::__construct(500, $message);
    }
}