Package com.iqbon.jcms.util

Examples of com.iqbon.jcms.util.NotFoundException


   * @return
   */
  public Model getModelInfoByModelName(String modelName) throws NotFoundException {
    Model model = modelDAO.queryModelByModelName(modelName);
    if (model.getDelete() == 1) {
      throw new NotFoundException();
    }
    return model;
  }
View Full Code Here


   * @throws NotFoundException
   */
  public Doc getDocById(String docid) throws NotFoundException {
    Doc doc = docDAO.queryDocById(docid);
    if (doc.getDelete() == 1) {
      throw new NotFoundException();
    }
    return doc;
  }
View Full Code Here

TOP

Related Classes of com.iqbon.jcms.util.NotFoundException

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.