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

io.polyglotted.elastic.index.IndexerException Maven / Gradle / Ivy

There is a newer version: 6.8.5
Show newest version
package io.polyglotted.elastic.index;

import io.polyglotted.elastic.client.ElasticException;

@SuppressWarnings({"serial", "WeakerAccess"})
public class IndexerException extends ElasticException {
    public IndexerException(String message) { super(message); }

    public IndexerException(String message, Throwable cause) { super(message, cause); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy