Package com.gentics.cr.exceptions

Examples of com.gentics.cr.exceptions.ConfigurationException


   */
  public final RequestProcessor getNewRequestProcessorInstance(final String requestProcessorName) throws CRException {
    CRConfigUtil requestProcessorConfig = this.getRequestProcessorConfig(requestProcessorName);
    if (requestProcessorConfig == null) {
      log.error("Cannot initialize RequestProcessor " + requestProcessorName);
      throw new ConfigurationException("config", "We cannot get the " + "configuration for the RequestProcessor",
          CRException.ERRORTYPE.FATAL_ERROR);
    }
    String requestProcessorClass = requestProcessorConfig.getRequestProcessorClass();
    log.debug("Instanciate RequestProcessor" + requestProcessorName + " from class " + requestProcessorClass);
    try {
View Full Code Here

TOP

Related Classes of com.gentics.cr.exceptions.ConfigurationException

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.