Package org.archive.wayback.exception

Examples of org.archive.wayback.exception.ConfigurationException


   * @return the ResourceStore used with this WaybackCollection
   * @throws ConfigurationException if none is configured
   */
  public ResourceStore getResourceStore() throws ConfigurationException {
    if(resourceStore == null) {
      throw new ConfigurationException("No resourceStore declared");
    }
    return resourceStore;
  }
View Full Code Here


   * @return the ResourceIndex used with this WaybackCollection
   * @throws ConfigurationException if none is configured
   */
  public ResourceIndex getResourceIndex() throws ConfigurationException {
    if(resourceIndex == null) {
      throw new ConfigurationException("No resourceIndex declared");
    }
    return resourceIndex;
  }
View Full Code Here

TOP

Related Classes of org.archive.wayback.exception.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.