Package org.infoglue.cms.exception

Examples of org.infoglue.cms.exception.PageNotPublishedException


   
    if(getSiteNodeId() != null)
    {
      SiteNodeVersionVO latestSiteNodeVersionVO = SiteNodeVersionController.getController().getLatestActiveSiteNodeVersionVO(db, getSiteNodeId(), new Integer(CmsPropertyHandler.getOperatingMode()));
      if(latestSiteNodeVersionVO == null)
        throw new PageNotPublishedException("There was no active published version on this page");
    }
   
    if(getSiteNodeId() == null)
    {
      if(getRepositoryName() == null)
View Full Code Here

TOP

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

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.