All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.inbot.elasticsearch.exceptions.EsVersionConflictException Maven / Gradle / Ivy

There is a newer version: 0.13
Show newest version
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