
org.elasticsearch.indices.RestIndexMissingException Maven / Gradle / Ivy
The newest version!
package org.elasticsearch.indices;
import org.elasticsearch.index.Index;
import java.util.Map;
/**
* An extension of IndexMissingException that also holds onto the map of
* response values from the REST call for debugging/extra info.
*/
public class RestIndexMissingException extends IndexMissingException {
private Map repsonseMap;
public RestIndexMissingException(Index index, Map responseMap) {
super(index);
this.repsonseMap = responseMap;
}
public Map getRepsonseMap() {
return repsonseMap;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy