Package javax.servlet

Examples of javax.servlet.UnavailableException.initCause()


  } 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);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.