Mine
public text v1 · immutable catch (SQLException x)
{
if (Config.DEBUG)
_log.fine("Database Connection FAILED");
// re-throw the exception
throw x;
}
catch (Exception e)
{
if (Config.DEBUG)
_log.fine("Database Connection FAILED");
throw new SQLException("Could not init DB connection:" + e.getMessage());
}