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

org.elasticsearch.hadoop.EsHadoopUnsupportedOperationException Maven / Gradle / Ivy

There is a newer version: 7.0.0-alpha2
Show newest version
package org.elasticsearch.hadoop;

/**
 * Denotes an operation that is not allowed to be performed, often due to the feature support of
 * the version of Elasticsearch being used.
 */
public class EsHadoopUnsupportedOperationException extends EsHadoopException {

    public EsHadoopUnsupportedOperationException() {
        super();
    }

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

    public EsHadoopUnsupportedOperationException(String message) {
        super(message);
    }

    public EsHadoopUnsupportedOperationException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy