Package org.cipango.console.printer.generic

Examples of org.cipango.console.printer.generic.ErrorPrinter


    }
    catch (Throwable e)
    {
      _logger.warn("Unable to process request: {}", request.getRequestURL().toString(), e);
      _logger.debug("Unable to process request: " +  request.getRequestURL().toString(), e);
      HtmlPrinter printer = new ErrorPrinter(e.toString());
      response.setStatus(HttpServletResponse.SC_SERVICE_UNAVAILABLE);
      request.setAttribute(Attributes.CONTENT, printer);
    }
    finally
    {
View Full Code Here

TOP

Related Classes of org.cipango.console.printer.generic.ErrorPrinter

Copyright © 2018 www.massapicom. 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.