Package com.stimulus.archiva.exception

Examples of com.stimulus.archiva.exception.ChainedRuntimeException


        if (getServlet()!=null)
          setSimpleMessage(getMessage("config.no_archive_warning")+" "+getNoWaitingMessagesInNoArchiveQueue()+".");
      }
    } catch (ConfigurationException ce) {
     logger.error("failed to load configuration",ce);
     throw new ChainedRuntimeException(ce.toString(),ce,logger);
   }
    return "success";
  }
View Full Code Here


      try {     
            config.load();
            setSimpleMessage(getMessage("config.cancelled"));
      } catch (ConfigurationException ce) {
        logger.error("failed to load configuration",ce);
        throw new ChainedRuntimeException(ce.toString(),ce,logger);
      }
      reload();
      reset();
      return "cancel";
  }
View Full Code Here

  protected static synchronized void initMessageStore() {
      try {
        if (messageStore==null)
            messageStore = new MessageStore();
      } catch (MessageStoreException ms) {
          throw new ChainedRuntimeException(ms.toString(),ms,logger);
      }
  }
View Full Code Here

TOP

Related Classes of com.stimulus.archiva.exception.ChainedRuntimeException

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.