public class HyperbolicMapServlet extends HttpServlet {
DatabaseInterface databaseInterface = null;
public void init() throws ServletException {
try {
databaseInterface = new DatabaseInterface(getInitParameter("dbPath"));
}
catch (IOException exception) {
// throw new ServletException("HyperbolicMapLoader: Failed to create database connection");
throw new ServletException(getInitParameter("dbPath"));
}