Package de.odysseus.calyxo.control.conf

Examples of de.odysseus.calyxo.control.conf.ExceptionHandlersConfig


   * Initialize global exception handlers.
   * @throws ServletException
   */
  protected void initExceptionHandlers() throws Exception {
    log.debug("Initializing exception handlers");
    ExceptionHandlersConfig exceptionsConfig = config.getExceptionsConfig();
    if (exceptionsConfig != null) {
      Iterator exceptionConfigs = exceptionsConfig.getExceptionHandlerConfigs();
      while (exceptionConfigs.hasNext()) {
        addHandler((ExceptionHandlerConfig)exceptionConfigs.next());
      }
    }   
    ActionsConfig actionsConfig = this.config.getActionsConfig();
View Full Code Here

TOP

Related Classes of de.odysseus.calyxo.control.conf.ExceptionHandlersConfig

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.