Files
server/core/lib/Http/Exception/SessionNotFoundException.php
2026-02-10 18:46:11 -05:00

13 lines
198 B
PHP

<?php
declare(strict_types=1);
namespace KTXC\Http\Exception;
/**
* Exception thrown when a session is expected but not available.
*/
class SessionNotFoundException extends \LogicException
{
}