1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-06 14:46:36 +02:00

Fix the uncaught exception because of namespace.

Signed-off-by: Takashi SHIRAI <shirai@nintendo.co.jp>
This commit is contained in:
Takashi SHIRAI
2025-03-19 15:23:02 +09:00
committed by Jakub Vrana
parent 2dd32cf534
commit 9f8344e53c
3 changed files with 5 additions and 5 deletions

View File

@@ -393,7 +393,7 @@ if (isset($_GET["sqlite"])) {
}
try {
$link = new SqliteDb($db);
} catch (Exception $ex) {
} catch (\Exception $ex) {
$connection->error = $ex->getMessage();
return false;
}