Package it.eng.spagobi.engines.commonj.exception

Examples of it.eng.spagobi.engines.commonj.exception.WorkNotFoundException


      executableWorkDir = worksRepository.getExecutableWorkDir(work);

      if (!worksRepository.containsWork(work)) {         
        logger.error("work [" +
            worksRepository.getRootDir().getPath()+"/"+work.getWorkName()+ "] not found in repository");
        throw new WorkNotFoundException("work [" +
            worksRepository.getRootDir().getPath()+"/"+work.getWorkName()+ "] not found in repository");
      }

      logger.debug("Work [" + work.getWorkName() +"] succesfully found in repository");
View Full Code Here

TOP

Related Classes of it.eng.spagobi.engines.commonj.exception.WorkNotFoundException

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.