Files
server/core/lib/Http/Exception/SessionNotFoundException.php
2025-12-21 10:09:54 -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
{
}