phpmyadmin/libraries/classes/Exceptions/SessionHandlerException.php
Maurício Meneghini Fauth 6122dfd0be
Replace exit with exception in Session class
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2022-11-17 22:06:51 -03:00

12 lines
135 B
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Exceptions;
use Exception;
class SessionHandlerException extends Exception
{
}