123456789101112131415161718192021222324252627 |
- <?php
- namespace Symfony\Component\HttpFoundation\Exception;
- class SessionNotFoundException extends \LogicException implements RequestExceptionInterface
- {
- public function __construct(string $message = 'There is currently no session available.', int $code = 0, \Throwable $previous = null)
- {
- parent::__construct($message, $code, $previous);
- }
- }
|