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

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

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

import java.util.List;

/**
 * Any object that carries with it an internal Exception that details some kind of faulty operation or data.
 */
public interface Exceptional {

    /**
     * @return the internal exception information.
     */
    Exception getException();

    /**
     * @return any logged messages from handlers earlier in the error handler chain for why they chose to pass on
     * handling the error.
     */
    List previousHandlerMessages();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy