} catch (Exception ex) {
// Catch exceptions here so that we can provide a better
// exception which will show up in the browser.
ServletException wrap = new UnavailableException(
"Error initializing JSF: " + ex.getMessage());
wrap.initCause(ex);
throw wrap;
}
facesServlet.init(servletConfig);
}