* @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;
}