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

org.elasticsearch.hadoop.handler.EsHadoopAbortHandlerException Maven / Gradle / Ivy

There is a newer version: 8.15.1
Show newest version
package org.elasticsearch.hadoop.handler;

import org.elasticsearch.hadoop.EsHadoopException;

/**
 * Denotes that a handler has decided to abort the job on a potentially retryable value. Instead of displaying the
 * original error as the reason for aborting the operation, the message specified from this exception is used.
 */
public class EsHadoopAbortHandlerException extends EsHadoopException {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy