Examples of IllegalIndexException


Examples of com.splunk.shuttl.archiver.model.IllegalIndexException

  private void throwAndLogNonExistingSplunkIndex(String index)
      throws IllegalIndexException {
    logger.error(did("Attempted to get thaw location for index",
        "index not in splunk", null, "index", index, "splunk service",
        splunkService.getHost()));
    throw new IllegalIndexException("Index " + index
        + " does not exist in splunk");
  }
View Full Code Here

Examples of com.splunk.shuttl.archiver.model.IllegalIndexException

  }

  private Index getSplunkIndexByName(String indexName) {
    Index splunkIndex = splunkService.getIndexes().get(indexName);
    if (splunkIndex == null)
      throw new IllegalIndexException(indexName);
    else
      return splunkIndex;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.