All pastes #2118156 Raw Edit

Mine

public text v1 · immutable
#2118156 ·published 2012-02-11 22:07 UTC
rendered paste body
		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());
		}