io.inbot.elasticsearch.exceptions.EsVersionConflictException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of inbot-es-http-client Show documentation
Show all versions of inbot-es-http-client Show documentation
Http client for Elasticsearch
package io.inbot.elasticsearch.exceptions;
import com.github.jsonj.JsonObject;
public class EsVersionConflictException extends RuntimeException {
private static final long serialVersionUID = -3357729391843579340L;
public EsVersionConflictException() {
super("Version conflict");
}
public EsVersionConflictException(JsonObject summary) {
super("Version conflict: " + summary);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy