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

ai.vespa.feed.client.ResultException Maven / Gradle / Ivy

There is a newer version: 8.443.12
Show newest version
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.feed.client;

import ai.vespa.feed.client.DocumentId;
import ai.vespa.feed.client.FeedException;
import ai.vespa.feed.client.OperationParameters;

import java.util.Optional;

/**
 * Signals that the document API in the feed container returned a failure result for a feed operation.
 *
 * @author jonmv
 */
public class ResultException extends FeedException {

    private final String trace;

    public ResultException(DocumentId documentId, String message, String trace) {
        super(documentId, message);
        this.trace = trace;
    }

    /** Holds the trace, if the failed operation had a {@link OperationParameters#tracelevel(int)} higher than 0. */
    public Optional getTrace() {
        return Optional.ofNullable(trace);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy