Package javax.servlet.jsp

Examples of javax.servlet.jsp.ErrorData


    if (uri == null)
      return null;

    Integer status = (Integer) getCauchoRequest().getAttribute(AbstractHttpRequest.STATUS_CODE);

    return new ErrorData(getThrowable(),
                         status == null ? 0 : status.intValue(),
                         (String) getCauchoRequest().getAttribute(AbstractHttpRequest.ERROR_URI),
                         (String) getCauchoRequest().getAttribute(AbstractHttpRequest.SERVLET_NAME));
  }
View Full Code Here

TOP

Related Classes of javax.servlet.jsp.ErrorData

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.