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

ai.vespa.feed.client.FeedException 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 java.util.Optional;

/**
 * Signals that an error occurred during feeding
 *
 * @author bjorncs
 */
public class FeedException extends RuntimeException {

    private final DocumentId documentId;

    public FeedException(String message) {
        super(message);
        this.documentId = null;
    }

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

    public FeedException(String message, Throwable cause) {
        super(message, cause);
        this.documentId = null;
    }

    public FeedException(Throwable cause) {
        super(cause);
        this.documentId = null;
    }

    public FeedException(DocumentId documentId, Throwable cause) {
        super(cause);
        this.documentId = documentId;
    }

    public FeedException(DocumentId documentId, String message, Throwable cause) {
        super(message, cause);
        this.documentId = documentId;
    }

    public Optional documentId() { return Optional.ofNullable(documentId); }

    @Override
    public String getMessage() {
        return documentId != null ? "(" + documentId + ") " + super.getMessage() : super.getMessage();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy