Package tornado

Examples of tornado.HTTPException


   * If not it HTTPException.
   * @throws HTTPException
   */
  protected void requestedFileIsReadable() throws HTTPException {
    if (request.getRequestFile().exists() == false)
      throw new HTTPException(HTTP.NOT_FOUND);

    if (request.getRequestFile().canRead() == false)
      throw new HTTPException(HTTP.FORBIDDEN);
  }
View Full Code Here


   *
   * @throws HTTPException
   */
  protected void requestedFileIsReadable() throws HTTPException {
    if (request.getRequestFile().exists() == false)
      throw new HTTPException(HTTP.NOT_FOUND);

    if (request.getRequestFile().canRead() == false)
      throw new HTTPException(HTTP.FORBIDDEN);
  }
View Full Code Here

TOP

Related Classes of tornado.HTTPException

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.