Package org.infoglue.cms.exception

Examples of org.infoglue.cms.exception.PageNotFoundException


                String extraInformation = "Referer: " + httpRequest.getHeader("Referer") + "\n";
                extraInformation += "UserAgent: " + httpRequest.getHeader("User-Agent") + "\n";
                extraInformation += "User IP: " + httpRequest.getRemoteAddr();
               
                logger.info("Could not map URI " + requestURI + " against any page on this website." + "\n" + extraInformation);
                throw new PageNotFoundException("Could not map URI " + requestURI + " against any page on this website.");                       
                  }
                  else
                      logger.info("Mapped URI " + requestURI + " --> " + siteNodeId + " in " + (end - start) + "ms");
                 
                  Integer contentId = getContentId(httpRequest);
View Full Code Here


     
    }
      catch(Exception e)
      {
        logger.info("Error locating page:" + e.getMessage(), e);
      throw new PageNotFoundException("There is no page with the requested specification. SiteNodeId:" + getSiteNodeId());
      }
   
    if(getLanguageId() == null)
    {
        LanguageVO browserLanguageVO = null;
View Full Code Here

TOP

Related Classes of org.infoglue.cms.exception.PageNotFoundException

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.