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

org.elasticsearch.index.mapper.DocumentParsingException Maven / Gradle / Ivy

/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the Elastic License
 * 2.0 and the Server Side Public License, v 1; you may not use this file except
 * in compliance with, at your election, the Elastic License 2.0 or the Server
 * Side Public License, v 1.
 */

package org.elasticsearch.index.mapper;

import org.elasticsearch.ElasticsearchException;
import org.elasticsearch.common.io.stream.StreamInput;
import org.elasticsearch.rest.RestStatus;
import org.elasticsearch.xcontent.XContentLocation;

import java.io.IOException;

/**
 * An exception thrown during document parsing
 *
 * Contains information about the location in the document where the error was encountered
 */
public class DocumentParsingException extends ElasticsearchException {

    public DocumentParsingException(XContentLocation location, String message) {
        super(message(location, message));
    }

    public DocumentParsingException(XContentLocation location, String message, Exception cause) {
        super(message(location, message), cause);
    }

    public DocumentParsingException(StreamInput in) throws IOException {
        super(in);
    }

    @Override
    public RestStatus status() {
        return RestStatus.BAD_REQUEST;
    }

    private static String message(XContentLocation location, String message) {
        return location == XContentLocation.UNKNOWN ? message : "[" + location + "] " + message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy