org.elasticsearch.hadoop.EsHadoopUnsupportedOperationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-hadoop-cascading Show documentation
Show all versions of elasticsearch-hadoop-cascading Show documentation
Elasticsearch Hadoop Cascading
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);
}
}