added error message when db connection check fails

This commit is contained in:
Ivan Gnusarkov 2024-06-18 14:10:35 +07:00
parent 7a75639dd3
commit 4c88a97698

View File

@ -44,7 +44,7 @@ async function checkConnection() {
success('Database connection successful.');
} catch (e) {
throw new Error('Unable to connect to the database.');
throw new Error('Unable to connect to the database: ' + e.message);
}
}